function load()
{
  if (GBrowserIsCompatible())
  {
    function createMarker(point)
    {
      var marker = new GMarker(point);
      return marker;
    }

    var safinahPoint = new GLatLng(55.167575,-1.688904);

    // Display the map, with some controls and set the initial location 
    var map = new GMap2(document.getElementById("map"));
    map.addControl(new GSmallMapControl());
    map.setCenter(safinahPoint, 15);
  
    // Set up the markers with info windows 
    var marker = createMarker(safinahPoint)
    map.addOverlay(marker);
  }
}

