   function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());  
        map.setCenter(new GLatLng(37.4419, -122.1419), 17);
	GLoad();
      }
    }


    var map = null;
    var geocoder = null;

    function GLoad() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
      map.addControl(new GSmallMapControl());
        geocoder = new GClientGeocoder();
	showAddress ("De Stok 15, 4703 SZ, Roosendaal, NL", "<strong>Megadiving</strong><br>De Stok 15<br>Roosendaal")
      }
    }

    function showAddress(address, info) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 13);

              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml(info);
            }
          }
        );
      }
    }

