// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map12"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(6.3617476546912,99.70775127410889), 13);
			map.openInfoWindowHtml(map.getCenter(),"<b>Pippen Marine (M) Sdn. Bhd. 75 </b><br/>Batu Ara Jalan Pantai Kok <br/>Langkawi Kedah, Malaysia  <br>Tel +60 19 4287318  ");

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

      }
    }

    //]]>