function load() {
  if (GBrowserIsCompatible()) {
  var map = new GMap2(document.getElementById("map"));
  
  map.enableScrollWheelZoom();
 map.addControl(new GLargeMapControl());
 //map.addControl(new GOverviewMapControl()); 
         map.setCenter(new GLatLng(52.39593,13.05973), 15);
    
  // Place a marker in the center of the map and open the info window
  var marker = new GMarker(map.getCenter());
  GEvent.addListener(marker, "click", function() {
  marker.openInfoWindowHtml("<b>Beratungsstelle &raquo;Vom S&auml;ugling zum Kleinkind&laquo;</b><br />im Familienzentrum an der Fachhochschule Potsdam<br />Friedrich-Ebert-Stra&szlig;e 4<br />14467 Potsdam<br /><a href='http://maps.google.de/maps?f=q&source=s_q&hl=de&geocode=&q=Friedrich-Ebert-Stra%C3%9Fe+4,+Potsdam&aq=0&sll=51.151786,10.415039&sspn=13.104599,39.506836&ie=UTF8&hq=&hnear=Friedrich-Ebert-Stra%C3%9Fe+4,+Potsdam+14467+Potsdam,+Brandenburg&z=15' title='Route' target='_blank'><u>Route</u></a>");
  });
  map.addOverlay(marker);
  marker.openInfoWindowHtml("Beratungsstelle &raquo;Vom S&auml;ugling zum Kleinkind&laquo;</b><br />im Familienzentrum an der Fachhochschule Potsdam<br />Friedrich-Ebert-Stra&szlig;e 4<br />14467 Potsdam<br /><a href='http://maps.google.de/maps?f=q&source=s_q&hl=de&geocode=&q=Friedrich-Ebert-Stra%C3%9Fe+4,+Potsdam&aq=0&sll=51.151786,10.415039&sspn=13.104599,39.506836&ie=UTF8&hq=&hnear=Friedrich-Ebert-Stra%C3%9Fe+4,+Potsdam+14467+Potsdam,+Brandenburg&z=15' title='Route' target='_blank'><u>Route</u></a>");    
  }
}



