    var map = null;
    var geocoder = null;

     function initialize() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map_canvas"));
        map.disableScrollWheelZoom();
        map.addControl(new GLargeMapControl());
        map.setCenter(new GLatLng(52.5,13.4), 8);
        geocoder = new GClientGeocoder();
      }
    }



    function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 16);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml("Legen Sie sich nun bitte als <br /><a href='http://www.gps-fahrtenbuch-online.de/index.php?action=user_neu'>neuer Benutzer</a> an oder schauen<br />Sie sich rechts die Demo Tour an.");

            }
          }
        );
      }
    }

