var map = null;
var geocoder = null;

function initialize() {
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("canvas"));
		map.enableScrollWheelZoom();
		map.addControl(new GSmallZoomControl());
		geocoder = new GClientGeocoder();
		}
	}

function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              map.setCenter(point, 10);
              //marker.openInfoWindowHtml(address);
            }
          }
        );
      }
    }