    //<![CDATA[

    var map = null;
    var geocoder = null;
    var address = "9000 Gent Kraanlei 1";
    

    function load() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
        geocoder = new GClientGeocoder();
        showAddress(address);
      }
    }
    
    function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 9);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml("<h2 style=\"margin-top:0;\">Brasserie 't Stropke</h2>Kraanlei 1<br />9000 Gent<br /> ");
              map.addControl(new GSmallMapControl());
            }
          }
        );
      }
    }
    //]]>