////////////////
//	javascript functions


function startPopMap(){
	window.open('index2.htm','_popup','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0');
}

function setWindowSizePos(xPos,yPos,xSize,ySize){
		xSize = Math.min(screen.availWidth, xSize);
		ySize = Math.min(screen.availHeight, ySize);
		xPos = Math.max(0, xPos);
		yPos = Math.max(0, yPos);
	//size:
		window.resizeTo(xSize,ySize);
	//position:
		window.moveTo(xPos,yPos);	//internet explorer
		window.screenX = xPos;	// netscape/mozilla
		window.screenY = yPos;	// netscape/mozilla
	//focus:
		window.focus();
}

function getBrowserType(){
	borwserName= navigator.appName.toLowerCase();	// convert all characters to lowercase to simplify testing 
	
	is_msie = (borwserName.indexOf("internet explorer") != -1);
	is_netscape = (borwserName.indexOf("netscape") != -1);
}

//	javascript functions
////////////////


////////////////
//	javascript init

getBrowserType();

//	javascript init
////////////////