function mapLoad() 
{
	//<![CDATA[
	if (GBrowserIsCompatible()) {
	var geocoder = new GClientGeocoder();
	var map;
	var directionsPanel;
	var directions;
	
	function showAddress(name, htmlAddress, address, theMap, showOverlay, mag) {
	  geocoder.getLatLng(address, function(point) {
		  if (!point) {
			alert(address + " not found");
		  } else {
			theMap.setCenter(point, mag);
	
			var html = "<p style='font-size: 12px; line-height: 15px;'><b>" + name + "</b><br />" + htmlAddress + "<br />";
			html += '<form action="http://maps.google.com/maps" method="get" target="_blank" id="mapForm"><br />';
			html += '<i style="font-size: 12px; line-height: 15px;">Enter your address:\</i>';
			html += '<br /><input type="text" name="saddr" value="" size=20>';
			html += '<input type="hidden" name="daddr" value="' + address + '" />';
			html += '<input type="submit" value="Directions"/>\</form>\</p>';
	
			
			var myMarker = new GMarker(point);
			theMap.addOverlay(myMarker);
			if (showOverlay > 0) {
				myMarker.openInfoWindowHtml(html);
				}
			GEvent.addListener(myMarker, "click", function() { myMarker.openInfoWindowHtml(html); } );
		  }
		}
	  );
	}
	
	var myHTMLAddress = "425 N. Findlay Street <br>Dayton, OH 45404";
	var myAddress = "425 N. Findlay Street, Dayton, OH 45404";
	var map = new GMap2(document.getElementById("map1"));
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());
	showAddress("Life Enrichment Center", myHTMLAddress, myAddress, map, 2, 11);
	}
	else {
	alert("This browser does not work with Google maps. Please consider Mozilla Firefox.");
	}
	//]]>
}