
	
	
	
	
	 function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
		var geocoder = new GClientGeocoder();
		map.addControl(new GSmallMapControl());
					
			  geocoder.getLatLng(
				address,
				function(point) {
				  if (!point) {
//					alert(address + " not found");
				  } else {
					map.setCenter(point, 14);

					var marker = new GMarker(point);
					GEvent.addListener(marker, "click", function() { location.href = 'http://maps.google.com/maps?f=q&hl=en&q='+address;} ); 	
					map.addOverlay(marker);
				  }
				}
			  )
			
			
			  
      }
    }
  
