// JavaScript Document
<!--
var winObj = null;

function launchWin(page, winWidth, winHeight) {
		
	if (navigator.appName == "Microsoft Internet Explorer" && winObj != null) {
		winObj.close();
		winObj = null;
	}
	
		
	eval("winObj = window.open(page + '.html', 'mapWin', 'toolbars=0, location = 0, statusbar=0, menubars=0, scrollbars=yes, resizable=0, width=" + winWidth + ", height=" + winHeight + ", left=10, top=70');");
	if (winObj != null) {
		/*var winContent = "<html><head></head>";
		winContent += '<body style="vertical-align:middle" topmargin=0 bottommargin=0 BGCOLOR="' + bckcolor + '" TEXT="' + frcolor + '">';
		winContent += '<center>' + content + '</center></body></html>';
		
		winObj.document.open();
		winObj.document.write(winContent );
		winObj.document.close();*/
		winObj.focus();
		
	}
}

function launchWin2(page, winWidth, winHeight) {
		
	if (navigator.appName == "Microsoft Internet Explorer" && winObj != null) {
		winObj.close();
		winObj = null;
	}
	
		
	eval("winObj = window.open(page, 'mapWin', 'toolbars=0, location = 0, statusbar=0, menubars=0, scrollbars=yes, resizable=0, width=" + winWidth + ", height=" + winHeight + ", left=10, top=70');");
	if (winObj != null) {
		winObj.focus();
		
	}
}
-->
