//<![CDATA[
	var map = null;
    var geocoder = null;
  
    function load(address) {
    	if (GBrowserIsCompatible()) {
        	var map = new GMap2(document.getElementById("googleMap"), { size: new GSize(506,207) });
          	geocoder = new GClientGeocoder();

          	if (geocoder) {
            	geocoder.getLatLng(
              		address,
              		function(point) {
                		if (!point) {
                  			alert(address + " not found");
                		} else {
                			map.setCenter(point, 13);
                  			map.addControl(new GSmallMapControl());
                  			new GKeyboardHandler(map);

			                var baseIcon = new GIcon(G_DEFAULT_ICON);
                  			markerOptions = { icon:baseIcon };
                  			var marker = new GMarker(point, markerOptions);
                  			map.addOverlay(marker);
                		}
              		}
            	);
          	}    
        }
	}
//]]>
