    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(45.365529,5.595269), 15);

        // Our info window content
        var infoTabs = [
          new GInfoWindowTab("Siege", "<b>Idealpes sarl</b><br><br>30 Boulevard de la Republique<br><b>38500 Voiron</b><br><br>Telephone : 04 76 05 61 85"),
          new GInfoWindowTab("Contact", "<b>Contact</b><br><br>Telephone : 04 76 05 61 85<br>Portable : 06 08 97 88 41 <b>Monsieur</b> Pesci<br>Portable : 06 - - - - <br>Portable : 06 - - - ")
        ];

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

    //]]>
