
var map_0, geoXml=null;

latlng="47.439235,8.714905";
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); // Vue carte, (G_SATELLITE_MAP: Vue satellite) - (G_HYBRID_MAP: Vue mixte)

	if(latlng!="") {
		var coord=new GLatLng(47.439235,8.714905);
		map_0.setCenter(coord, 7);
	}

	geoXml = new GGeoXml("http://www.google.com/maps/ms?output=nl&ie=UTF8&hl=de&msa=0&ll=47.439235,8.714905&spn=1.344988,2.469177&z=7&msid=107559345936700337618.00047a20a37fbd8730a95");
	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.de/maps/ms?ie=UTF8&hl=de&msa=0&ll=47.439235,8.714905&spn=1.344988,2.469177&z=7&msid=107559345936700337618.00047a20a37fbd8730a95");
	Lien.appendChild(document.createTextNode("Karte groesser darstellen"));
	TagSmall.appendChild(Lien);
	PosLib.appendChild(TagSmall);
}
else {
	document.getElementById("Googlemap_0").innerHTML="Sorry, your browser can't display Google Maps...";
}
