// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map29"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(-33.91672538186335,18.42656135559082), 13);
			map.openInfoWindowHtml(map.getCenter(),"<b>Pescanova Ship Agents & Brokers</b><br/>2 Floor Metlife Centre<br/>Coen Steytler Ave , Foreshore  <br>Cape Town 8001<br>P.O Box 4063 Cape Town 8000<br>Tel +27 21 405 4460");

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

      }
    }

    //]]>
