// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map14"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(35.89906263725572	,14.494571685791016), 13);
			map.openInfoWindowHtml(map.getCenter(),"<b>S&D Yachts Ltd</b><br/>Sea Breeze, Triq Giuseppe Cali Ta' Xbiex<br/>MSD 14, MALTA<br>Tel +356 2132 0577 ");

// Place a marker in the center of the map and open the info window
// automatically
var marker = new GMarker(map.getCenter());
GEvent.addListener(marker, "click", function() {
  marker.openInfoWindowTabsHtml(infoTabs);
});
map.addOverlay(marker);

      }
    }

    //]]>