<!--



    var direction = null;
    var geocoder = null;

    function load() {
      if (GBrowserIsCompatible()) {
        direction = new GMap2(document.getElementById("direction"));
        //map.setCenter(new GLatLng(37.4419, -122.1419), 13);
		direction.addControl(new GSmallMapControl());
		direction.addControl(new GMapTypeControl());
        geocoder = new GClientGeocoder();
      }
    }

    function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");
            } else {
              direction.setCenter(point, 12);
              var marker = new GMarker(point);
              direction.addOverlay(marker);
              marker.openInfoWindowHtml(address);
            }
          }
        );
      }
    }




//-->