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(49.249711,8.076153), 11);
    
  // 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>TTC Burrweiler</b><br/>Raiffeisenstraße 2<br/>76825 Burrweiler<br/>Festhalle:<br/>Tel. 0 63 45 / 40 72 67<br/>Vorstand:<br/>Heinz Lambert<br/>Tel. 0 63 45 / 94 24 01" );
  });
  map.addOverlay(marker);
  marker.openInfoWindowHtml("<b>TTC Burrweiler</b><br/>Raiffeisenstraße 2<br/>76825 Burrweiler<br/>Festhalle:<br/>Tel. 0 63 45 / 40 72 67<br/>Vorstand:<br/>Heinz Lambert<br/>Tel. 0 63 45 / 94 24 01");
      
  }
}
