
var map_0, geoXml=null;

latlng="39.434072,-84.208145";
if (GBrowserIsCompatible()) {
	map_0 = new GMap2(document.getElementById("Googlemap_0"));
	map_0.clearOverlays();
	map_0.enableDoubleClickZoom();
	map_0.enableContinuousZoom();
	map_0.setMapType(G_NORMAL_MAP);

	if(latlng!="") {
		var coord=new GLatLng(39.434072,-84.208145);
		map_0.setCenter(coord, 8);
	}

	geoXml = new GGeoXml("http://www.google.com/maps/ms?output=nl&hl=en&gl=us&ptab=2&ie=UTF8&oe=UTF8&msa=0&msid=110582541007067894630.00048b29b97d480e88f41&ll=39.434072,-84.208145&spn=2.626143,5.817261&z=8");
	map_0.addOverlay(geoXml);
	map_0.setUIToDefault();
	
	PosLib = document.getElementById("Lib_0");
	TagSmall=document.createElement("small")
	Lien = document.createElement('a');
	Lien.setAttribute('href',"http://maps.google.com/maps/ms?hl=en&gl=us&ptab=2&ie=UTF8&oe=UTF8&msa=0&msid=110582541007067894630.00048b29b97d480e88f41&ll=39.434072,-84.208145&spn=2.626143,5.817261&z=8");
	Lien.appendChild(document.createTextNode("Zoom in"));
	TagSmall.appendChild(Lien);
	PosLib.appendChild(TagSmall);
}
else {
	document.getElementById("Googlemap_0").innerHTML="Sorry, your browser can't display Google Maps...";
}
