function load() {
  if (GBrowserIsCompatible()) {
  var map = new GMap2(document.getElementById("map"));
  
  map.enableScrollWheelZoom();
  map.addControl(new GLargeMapControl());
  map.addControl(new GMapTypeControl());
  map.setCenter(new GLatLng(47.82400,8.18100), 13);
    
  // 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.openInfoWindowHtml("<p class=bodytext><b>Vier Jahreszeiten Am Schluchsee</b><br/><a href=\"http://maps.google.com/maps?daddr=Am+Riesenbühl+4+79859+Schluchsee\" target=_blank >Route hierher berechnen</a></p>");
  });
  map.addOverlay(marker);
  marker.openInfoWindowHtml("<p class=bodytext><b>Vier Jahreszeiten Am Schluchsee</b><br/><br/><a href=\"http://maps.google.com/maps?daddr=Am+Riesenbühl+4+79859+Schluchsee\" target=_blank >Route hierher berechnen</a></p>");
      
  }
}

