// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map6"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(-8.73888861464211,115.21083354949951), 13);
			map.openInfoWindowHtml(map.getCenter(),"<b>PT. INDONUSA SEGARAMARINE</b><br/>Jl. Raya Pelabuhan Benoa<br/>Denpasar 80222<br>Tel +62 361 710004  ");

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

      }
    }

    //]]>