// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map18"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(6.920494461690548,79.85731244087219), 13);
			map.openInfoWindowHtml(map.getCenter(),"<b>Prudential Shipping Lines Private Limited</b><br/>Level 6, Access Towers, <br/>278, Union Place, Colombo 2,Sri Lanka  <br>Tel +94 11 4721237 (6 lines) ");

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

      }
    }

    //]]>
