
var map_0, geoXml=null;

latlng="48.224673,8.876953";
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(48.224673,8.876953);
		map_0.setCenter(coord, 3);
	}

	geoXml = new GGeoXml("http://www.google.com/maps/ms?output=nl&ie=UTF8&hl=en&msa=0&msid=113998976893522700237.00044eab88ed15a77c83a&ll=48.224673,8.876953&spn=35.938799,59.501953&z=3");
	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.co.uk/maps/ms?ie=UTF8&hl=en&msa=0&msid=113998976893522700237.00044eab88ed15a77c83a&ll=48.224673,8.876953&spn=35.938799,59.501953&z=3");
	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...";
}
