    var map = null;
    var geocoder = null;

    function load(address) 
    {
      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) 
            {
		document.getElementById("map").style.display = 'none';
            }
	    else 
            {
              map.setCenter(point, 15);
              var marker = new GMarker(point);
              map.addOverlay(marker);
//              marker.openInfoWindowHtml(address);
            }
          }
        );
      }
    }


