// Show Map Window
function ShowMap(mapURL)
{
		var w = 800;
		var h = 600;
		if (window.screen) {
			w = screen.width * 0.9;
			h = screen.height * 0.8;
		}

		if (w > 1024) w = 1024;
		if (h > 768 ) w = 768;
		var temp="left=0,top=0,directories=0,fullscreen=0," + 
			 "screenx=0, screeny=0, toolbar=0, location=0," +
			 "resizable=1, status=1, scrollbars=1," + 
			 "height=" + h + ",width=" + w;
		var win = window.open("","Ada", temp);
		win.focus();
		win.location.href = mapURL;
}