function initialize() 
{
  if (GBrowserIsCompatible())
  {
    var infoHtml = "<img src=\"/style/itdev_logo.png\" width=\"60\" height=\"24\" alt=\"ITDev\" />"
          + "<p style=\"font-size: 12pt;\"><b>I.T. Dev Ltd</b></p>"
          + "<p style=\"font-size: 9pt;\">Kenneth Dibben House, Enterprise Road,<br>"
          + "Southampton Science Park,<br> Southampton, SO16 7NS"
          + "<br>+44 (0)23 8098 8890<br>"
          + "<a href=\"http://www.itdev.co.uk\">http://www.itdev.co.uk/</a></p>"
          + "<form action=\"http://maps.google.co.uk/maps\" method=\"get\">"
          + "<p style=\"font-size: 9pt;\"><label for=\"saddr\">Get directions from:</label>"
          + "<br><input type=\"text\" size=20 name=\"saddr\" id=\"saddr\" value=\"\" />"
          + "<input type=\"submit\" value=\"Go\" /><input type=\"hidden\" name=\"daddr\""
          + "value=\"Kenneth Dibben House, Enterprise Road, Southampton Science Park, Southampton, SO16 (I.T. Dev Ltd.)\"/>"
          + "<input type=\"hidden\" name=\"hl\" value=\"en\" /></p></form>"

    var map = new GMap2(document.getElementById("map_canvas"));
    map.setCenter(new GLatLng(50.960697, -1.423717), 10);
    var latlng = new GLatLng(50.960697, -1.423717);

    var marker = new GMarker(latlng);
    map.addOverlay(marker);
    
    // Hide the shadow as this was causing problems in IE8 and Safari 4
    map.getPane(G_MAP_FLOAT_SHADOW_PANE).style.display = "none";

    marker.openInfoWindowHtml(infoHtml);

    var customUI = map.getDefaultUI();
    customUI.maptypes.terrain = false;
    map.setUI(customUI);
    
    GEvent.addListener
    (
      marker, "click", 
      function() 
      {
        marker.openInfoWindowHtml ( infoHtml);
      }
    );
  }
}

