function load() {
      if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.setCenter(new GLatLng(50.843359,3.604717, 0.007696,0.018003), 16);

// Our info window content
var infoTabs = [
  new GInfoWindowTab("", "<ul style=' list-style:none;'><li>Hotel - Brasserie Cear</li><li>Markt 6</li>9700 Oudenaarde<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);
      }
    }


