function showAddress(address) {
	if (geocoder) {
		geocoder.getLatLng(
			address,
			function(point) {
				if (!point) {
					alert(address + " not found");
				} else {
					map.setCenter(point, 12);
					// Place a marker in the center of the map
					var baseIcon = new GIcon();
					baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
					baseIcon.iconSize = new GSize(20, 34);
					baseIcon.shadowSize = new GSize(37, 34);
					baseIcon.iconAnchor = new GPoint(9, 34);
					baseIcon.infoWindowAnchor = new GPoint(9, 2);
					baseIcon.infoShadowAnchor = new GPoint(18, 25);
					var icon = new GIcon(baseIcon);
					icon.image = "http://www.google.com/mapfiles/markerH.png";
					var marker = new GMarker(map.getCenter(), icon);
					map.addOverlay(marker);
					GEvent.addListener(marker, "click", function() {
						marker.openInfoWindowHtml(address);								
					});	
					map.openInfoWindow(map.getCenter(), document.createTextNode("You are here: " + address));						
				}
			}
		);
	}
}
//]]>

function getAddress(){
var formAddress = document.address.address.value + " " + document.address.city.value + ", " + document.address.state.value + " " + document.address.zip.value;
return formAddress;				
}
