// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map5"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(19.134708099764886,72.83514976501465), 13);
			map.openInfoWindowHtml(map.getCenter(),"<b>EMS  Seacrest Marine Services Pvt Ltd</b><br/>C &ndash; 103 /104, Remi Bizcourt, Shah Industrial Estate,<br/>Off Veera Desai Road, Andheri ( West ), Mumbai &ndash; 400  053<br>Tel +91 22 67041100  ");

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

      }
    }

    //]]>