function load() {
  if (GBrowserIsCompatible()) {
  var map = new GMap2(document.getElementById("map_tangendorf"));
  
  map.addControl(new GLargeMapControl());
  map.addControl(new GMapTypeControl());
  map.setCenter(new GLatLng(53.30136409765864,10.083389282226562), 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("<b>Hundherum....zufrieden!</b><br/>Tangendorf<br/><br/><a href='http://maps.google.de/maps?daddr=Westermoor&hl=de&sll=53.30098,10.08642&sspn=0.010938,0.027874&geocode=FXpPLQMdKNyZAA&mra=mr&z=15' target='_blank'>Route berechnen</a>");
 });
 map.addOverlay(marker);
 marker.openInfoWindowHtml("<b>Hundherum....zufrieden!</b><br/>Tangendorf<br/><br/><a href='http://maps.google.de/maps?daddr=Westermoor&hl=de&sll=53.30098,10.08642&sspn=0.010938,0.027874&geocode=FXpPLQMdKNyZAA&mra=mr&z=15' target='_blank'>Route berechnen</a>");
     
  }
}

