    //<![CDATA[

	var map = null;
	var geocoder = null;
	var address = "4900 Rialto Road, West Chester, OH 45069";

	function load() {
		if (GBrowserIsCompatible()) {
			map = new GMap2(document.getElementById("map"));
			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);
				var marker = new GMarker(point);
				map.addOverlay(marker);
				marker.openInfoWindowHtml("<b>St. Gertrude the Great Church</b><br>4900 Rialto Road<br>West Chester, OH 45069<br>[<a href='http://maps.google.com/maps?saddr=4900%20Rialto%20Road%2045069'>Get Directions</a>]");
			}
		}
		);
		}
	}
	load();
	showAddress(address);
    //]]>
