 
  function load() {
    	
    	
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(22.252636, 73.194225 ), 13);

        // Our info window content
        var infoTabs = [
          new GInfoWindowTab("Tab #1", "XL Plastics Ltd <br>303/2 Makarpura Ind. Estate <br>Vadodara 390 010 <br>India <p>Tel:+91-265-2638125 / 2638026 / 2652118 <br>Fax:+91-265-2638661 / 2646716 </p><p>Sales and Marketing: info@xlplastics.com <br>Spares and Service: service@xlplastics.com </p><p>Manufacturers of Plastic bag making machinery.</p>")
         ];

        // 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);
        marker.openInfoWindowTabsHtml(infoTabs);
      }
    }



window.onload = function () {
	
    load();
}



