// JavaScript Document
	function createMarker(point,text) {
	  var marker = new GMarker(point);
	  GEvent.addListener(marker, "click", function() {   marker.openInfoWindowHtml(text);  });
	  return marker; 
	}
	function load() {
		if (GBrowserIsCompatible()) {
			var Lat=45.9334963;
			var Lng=5.8318468;
			var Zoom=13 ;
			var TextAffiche="Les Tyroliennes du Fier - Espace Sports et Nature du Fier<br />Chemin des &icirc;les - 73310 Motz - Savoie - France<br />T&eacute;l. : (33) 06 30 36 25 35 - Email : triangle.aventure@orange.fr<br />Parcours aventure, parcours acrobatiques forestiers et Base de loisirs "; 

			var map = new GMap2(document.getElementById("map")); 
			map.setCenter(new GLatLng(Lat,Lng ),Zoom ); 
			map.addControl(new GSmallMapControl()); 
			map.addControl(new GMapTypeControl()); 
	 
			var point = new GLatLng(Lat,Lng);
			var marker = createMarker(point,TextAffiche);
			map.addOverlay(marker); 
		}
	}