
var map_0, geoXml=null;

latlng="15.904268,-85.991288";
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(15.904268,-85.991288);
		map_0.setCenter(coord, 15);
	}

	geoXml = new GGeoXml("http://www.google.com/maps/ms?output=nl&ie=UTF8&hl=en&msa=0&ll=15.904268,-85.991288&spn=0.025135,0.044589&t=h&z=15&msid=104887314974560009325.00047d1a9418ec3f28127&iwloc=00047d1a98306c63118f7");
	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?ie=UTF8&hl=en&msa=0&ll=15.904268,-85.991288&spn=0.025135,0.044589&t=h&z=15&msid=104887314974560009325.00047d1a9418ec3f28127&iwloc=00047d1a98306c63118f7");
	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...";
}
