function load()
{
      if (GBrowserIsCompatible()) {
       var map = new GMap2(document.getElementById("map"));
	   var geocoder = new GClientGeocoder();
	   var address = "2 Mill Road, Erith, uk";
	   geocoder.getLatLng( address,
		    function(point)
		    {
			      if (!point)
			      {
			        alert(address + " not found");
			      }
			      else
			      {
			        map.setCenter(point, 15);
			        var marker = new GMarker(point);
			       map.addOverlay(marker);
				   //marker.openInfoWindow("Erith Carpet Center");

			      }
		     }
		  );
		}
}
