function GM_createMarker(point,pointname,propHTML,iconname,pointdraggable) {
	var marker = new GMarker(point,{icon:iconname,draggable:pointdraggable});
	var html = propHTML;
	/* Show this marker's index in the info window when it is clicked */
	GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(propHTML); });
	return marker;
}

function GM_viewProperty(x,y,markerName) {
	/* close the info window if it is open */
	map.closeInfoWindow()
	/* Standard Zoom and Center */
	var mypoint		= new GLatLng(y,x);
	var mymarker	= eval(markerName);
	var myhtml		= eval(markerName + '_HTML');
	map.setCenter(mypoint,12);
	mymarker.openInfoWindowHtml(myhtml);
}

function GM_clearMap() {
	map.clearOverlays();
}

function GM_browserCompatibility() {
	/* Check to see if the browser is compatible */
	if(GBrowserIsCompatible()) {
		document.write("<a name=CF_GoogleMap></a><div id=CF_GoogleMap9833 style='width:400px;height:350px;'></div>");
	}
	else {
		document.write("We're sorry but your browser is not compatible with Google Maps");
	}
}

function GM_Load() {
	map = new GMap2(document.getElementById("CF_GoogleMap9833"));
	/* Map Controls */			
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	/* Center the map for initial load */
	var center = new GLatLng(39.972911,-83.008575);
	map.setCenter(center,10);
	var point = new GLatLng(39.869976,-83.063743);
	markerD5F8813897C717E33FFEFB2299D932B6_HTML = '<div class="GM_InfoWndow"><h3>Get Driving Directions</h3><form action="http://maps.google.com/maps" target="_blank" method="get"><p><label>Starting Address:<br /><input type="text" size="40" maxlength="255" name="saddr" id="saddr" value="" /></label></p><p><input type="submit" value="Get Directions" class="form-button" /><input type="hidden" name="daddr" value="2251 Presley Drive, Grove City, Ohio 43123(Home)" /><input type="hidden" name="hl" value="en" /></p></form></div>';
	markerD5F8813897C717E33FFEFB2299D932B6 = GM_createMarker(point,'markerD5F8813897C717E33FFEFB2299D932B6',markerD5F8813897C717E33FFEFB2299D932B6_HTML,'',false);
	map.addOverlay(markerD5F8813897C717E33FFEFB2299D932B6);			
}