<!--
function load(address) {
      if (GBrowserIsCompatible()) {
        var plym_map = new GMap2(document.getElementById("office-map"));
		var geocoder = new GClientGeocoder();		
			plym_map.addControl(new GSmallMapControl());
        	plym_map.addControl(new GMapTypeControl());

		var plym_address = address;
		
		    // Draw Plymouth location map
  			geocoder.getLatLng(
		    plym_address,
		    function(point) {
		      if (!point) {
		        alert(plym_address + " not found");
		      } // end point if
			  else {
		        	plym_map.setCenter(point, 13);
		        var plym_marker = new GMarker(point);
		        	plym_map.addOverlay(plym_marker);
		        	plym_marker.openInfoWindowHtml(plym_address);
		      } // end point else
    		} // end function(point)
  			); // end geocoder.getLatLng for plymouth location
      } // end if GBrowserIsCompatible
    } // end function to load maps
//-->