var map=null;var geocoder=null;var address=null;function loadGoogleMap(c){address=c;if(GBrowserIsCompatible()){var d=document.getElementById("map");showHideMap(true);map=new GMap2(d);map.addControl(new GSmallMapControl());map.addControl(new GMapTypeControl());geocoder=new GClientGeocoder()}showAddress(address)}function showAddress(b){if(geocoder){geocoder.getLatLng(b,function(a){if(!a){alert(b+" not found")}else{map.setCenter(a,13)}})}}function showHideMap(c){var d=document.getElementById("map");if(c){d.style.visibility="visible"}else{d.style.visibility="hidden"}};