function load() {
  if (GBrowserIsCompatible()) {
  var map = new GMap2(document.getElementById("map"));

  var text= "<b>SE 2010</b><br/>Fürstenallee 7<br/>33102 Paderborn<br /><a href='http://maps.google.de/maps?daddr=Fürstenallee+7,+33102+Paderborn+(Heinz+Nixdorf+MuseumsForum)&geocode=3371268293612202208,51.732138,8.736255&dirflg=&saddr=&f=d&hl=de&dq=Heinz-Nixdorf MuseumsForum&sll=48.73059,9.016175&sspn=0.251366,0.64888&cid=48727534,8850089,11535059465088755623&ie=UTF8&ll=48.73059,9.016175&spn=7.635285,20.76416&z=6&om=0' target='_blank'><u>Route</u></a>";
  
  map.enableScrollWheelZoom();
  map.addControl(new GLargeMapControl());
  map.addControl(new GMapTypeControl());
  map.setCenter(new GLatLng(51.732138,8.736255), 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(text);
  });
  map.addOverlay(marker);
  marker.openInfoWindowHtml(text);
      
  }
}

