function load() {
      if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.setCenter(new GLatLng(50.966711,3.655035, 0.007757,0.014591), 16);


// Our info window content
var infoTabs = [
  new GInfoWindowTab("", "<ul style=' list-style:none; color:#000;'><li>La Borgata</li><li>Steenweg 233C</li>9810 Eke-Nazareth<li></li></ul>")
];

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


