// JavaScript Document
    var map = null;
    var geocoder = null;

    function initialize() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map_canvas"));
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());

        //map.setCenter(new GLatLng(37.4419, -122.1419), 5);
        geocoder = new GClientGeocoder();
//		resetMap();
		showAddress();
      }
    }

	function resetMap(){
	  var startAddress = 'Phoenix, AZ';
      if (geocoder) {
        geocoder.getLatLng(
          startAddress,
          function(point) {
            if (!point) {
              alert(startAddress + " not found");
            } else {
              map.setCenter(point, 5); //10 is phoenix area, 5 will be SW USA
            }
          }
        );
      }
	}


