
    //<![CDATA[

function load() {
      if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(43.96469, 3.85613), 8);

// Our info window content
var infoTabs = [
  new GInfoWindowTab("Entre Thym et Chataigne", "Entre Thym et Chataigne<br>30 170 Saint-Hippolyte-du-Fort<br>Tel : 04 66 77 21 68")
];

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

var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(43.96469, 3.85613), 8);

// Our info window content
var infoTabs = [
  new GInfoWindowTab("Entre Thym et Chataigne", "Entre Thym et Chataigne<br>30 170 Saint-Hippolyte-du-Fort<br>Tel : 04 66 77 21 68")
];

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

    //]]>

