// JavaScript Document
function popGmap(){
	var w =90/100*document.documentElement.clientWidth ;
	var h =90/100*document.documentElement.clientHeight;
	strFeatures ='width='+w+',height='+h+',toolbar=no,location=no,scrollbars=no,status=no,resizable=no,fullscreen=no,dependent=yes,directories=no,menubar=noscreenX=50,screenY=50,top=50, left=50,';
	NewWindow=window.open('/map/gmap.php?h='+h+'&w='+w,'newWin',strFeatures);
	NewWindow.focus();
}
			  