function load() {
  function createListener (marker, text) {
    GEvent.addListener(marker, "click", function() {
             marker.openInfoWindowHtml(text);
       });
  }
 
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
    var control = new GLargeMapControl();
    map.addControl(control);
    control = new GMapTypeControl();
    map.addControl(control);
    map.setCenter(new GLatLng(52.2065449,8.7158467), 13);
    map.setMapType(G_NORMAL_MAP);
 
    var point = new Array();
    var text = new Array();
 
    point[0] = new GLatLng(52.2065449,8.7158467);
    text[0] = "<h4>bau-for-mat K&uuml;chen GmbH &amp; Co. KG</h4><p>Kattwinkel 1<br /> D-32584 L&ouml;hne.</p><p><a href='http://maps.google.de/maps?f=q&source=s_q&hl=de&geocode=&q=bau-for-mat+K%C3%BCchen+GmbH+%26+Co.+KG,+Kattwinkel+1,+32584+L%C3%B6hne&sll=51.151786,10.415039&sspn=24.145295,67.675781&ie=UTF8&t=h&z=16&iwloc=A'>Route berechnen</a></p>";
 
    point[1] = new GLatLng(52.2108507,8.6879607);
    text[1] = "<h4>Haus Beck</h4><p>Ellerbuscher Stra&szlig;e<br /> D-32554 L&ouml;hne.</p><p><a href='http://maps.google.de/maps?f=q&source=s_q&hl=de&geocode=&q=Haus+Beck,+Ellerbuscher+Stra%C3%9Fe,+32554+L%C3%B6hne&sll=52.206544,8.715846&sspn=0.01148,0.033045&ie=UTF8&t=h&z=15&iwloc=cent'>Route berechnen</a></p>";
  
    var marker = new Array();
    for (i=0; i< point.length; i++) {
       marker[i] = new GMarker(point[i]);
       map.addOverlay(marker[i]);
       createListener (marker[i], text[i]);
    }
 
  }
}
