//<![CDATA[
    var map = null;
    var geocoder = null;

    function initialize() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map_canvas"));
	map.addControl(new GSmallMapControl());
        geocoder = new GClientGeocoder();
	showAddress(address, address2); return false
      }
    }

    function showAddress(address, address2) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 14);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml('<div style="white-space: nowrap;font-family:Verdana;font-size:11px;">' + address2 + '</div>');
            }
          }
        );
      }
    }
//]]>