// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map16"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(-4.616721165251779,55.45005798339844), 12);
			map.openInfoWindowHtml(map.getCenter(),"<b>The Wharf Hotel & Marina</b><br/>P.O. Box 278 Victoria, Mah&eacute;<br/>Seychelles, Indian Ocean <br>Tel +248 601278");

// 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);

      }
    }

    //]]>
