var map,geocoder;var coord;function load_map(C,B,D){if(GBrowserIsCompatible()){map=new GMap2(document.getElementById("map"),{matTypes:[G_SATELLITE_MAP,G_HYBRID_MAP,G_NORMAL_MAP]});map.removeMapType(G_NORMAL_MAP);map.addMapType(G_NORMAL_MAP);map.removeMapType(G_SATELLITE_MAP);map.addMapType(G_SATELLITE_MAP);var A=new GLatLng(C,B);map.setCenter(A,D);createMarker(new GLatLng(C,B),"html");}}function createMarker(A,B){marker=new GMarker(A,{clickable:true});map.addOverlay(marker);return marker;}function resizeMapDiv(){}