function showMaps(mapType)
{
	window.open( "maps-show.aspx?maptype=" + mapType, "Maps", "status = 0, height = 658, width = 760, resizable = 0" )
}
function popWin(mypage, myname, w, h, scrollV, stat) {
	// popup window
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	// default values for scroll and status
	if(scrollV!=1){scrollV = 0};
	if(stat!=1){stat = 0};
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scrollV+',status='+stat+',dependent=1';
	try {
		win = window.open(mypage, myname, winprops);
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
	catch(e) { }
}