
//***********************************************	
//***************** FUNCTIONS *******************
//***********************************************

// resize browser
function resizeWin(s) {
	bw = 1024;
	bh = 768;
	if(s == "S"){
		bw = 640;
		bh = 480;
	}else if(s == "M"){
		bw = 800;
		bh = 600;	
	}else if(s == "L"){
		bw = 1024;
		bh = 768;	
	}
   if (parseInt(navigator.appVersion)>3) {
     if (navigator.appName=="Netscape") {
     top.outerWidth=bw;
     top.outerHeight=bh;
   }
   else top.resizeTo(bw,bh);
   }
}


//*********** SET MAP SIZE FUNCTIONS ***********


 // set map size
function setMapSize(s){
	document.frmMain.cmd.value = "REFRESH";
	document.frmMain.msize.value = s;
	document.frmMain.submit();
	showLayer("loadLayer");
}  



//show parcel attributes
function showParcelAttributes(sFolio){
	theURL = "search_parceltable.asp?folio="+sFolio;
	parent.TextFrame.location = theURL;
}