    //<![CDATA[
    function load() {
      if (GBrowserIsCompatible()) {
       var map = new GMap2(document.getElementById("map"));
         var customUI = map.getDefaultUI();
        customUI.maptypes.hybrid = false;
        customUI.maptypes.physical = false;
       customUI.maptypes.satellite = false;
        map.setUI(customUI);
       map.enableScrollWheelZoom();
var geocoder = new GClientGeocoder();
address = "Birkigh&ouml;fe 6, 69214 Eppelheim";
 geocoder.getLatLng(
          address,
          function(point) {
 map.setCenter(point, 15);
           var marker = new GMarker(point);
           map.addOverlay(marker);
           address='<img src="/images/logoklein.png" alt="Logo" style="float:left;"><br>&nbsp;Birkigh&ouml;fe 6<br>&nbsp;69214 Eppelheim<br>&nbsp;<a style="text-decoration:underline" href="http://maps.google.de/maps?daddr=Birkigh%C3%B6fe+6,+69214+Eppelheim&amp;f=d&amp;hl=de&amp;ie=UTF8z=6" target="_blank">Route berechnen &raquo;</a>';
           marker.openInfoWindowHtml(address);
  		   GEvent.addListener(marker, "click", function() {  marker.openInfoWindowHtml(address);});
          }
        );
 
       }
    }
    //]]>
