function LoadMap() {
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("map"));
		showAddress(address);
	}
}

function showAddress(address) {
	geocoder.getLatLng( address, function(point) {
		if (!point) {
			alert(address + " not found");
		} else {
			map.setCenter(point, 3);
			var marker = new GMarker(point);
			GEvent.addListener(marker, "click", function() {marker.openInfoWindowHtml("Dean L Sutton P.C.<br />105 7th Street<br />Silvis, Illinois 61282<br />Telephone: 309-755-5239<br />Fax: 309-755-0966<br /><a href=\"mailto:deansutton@dlsuttonpc.com\">deansutton@dlsuttonpc.com")});
			map.addOverlay(marker);
			map.addControl(new GLargeMapControl());
			map.setZoom(10);
		}
	})
}

