function getIcon(ImagePath){
		var icon = new GIcon();
		icon.image = ImagePath;
		icon.iconAnchor = new GPoint(30, 40);
		icon.iconSize = new GSize(60, 81);
		return icon;
	}

	function pageload(ImagePath,myHtmlA,latitude,longitude){
		var map = new GMap2(document.getElementById("map_canvas"));
		//Add zoom control et type view
		//map.addControl(new GLargeMapControl());
		//map.addControl(new GMapTypeControl());
		//Set the position of the map
		map.setCenter(new GLatLng(latitude,longitude), 15);
		
		//Add first point
		var pointA = new GLatLng(latitude,longitude);
		var markerA = new GMarker(pointA, { icon: getIcon(ImagePath) });
		GEvent.addListener(markerA, "click", function() {
			/*var myHtmlA = "<span style=\"color:#000000;\">"+
						  "<b>H&ocirc;tel Le Roberval</b><br>" +
						  "505 Boulevard Ren&eacute;-L&eacute;vesque Est<br>" +
						  "Montr&eacute;al (Qu&eacute;bec<br>" +
						  "Canada H2L 5B6<br>" +
						  "T&eacute;l&eacute;phone: (514) 286-5215<br>" +
						  "Sans frais: 1-877-552-2992<br>" +
						  "T&eacute;l&eacute;copieur: (514) 286-7548<br>" +
						  "Site Internet: http://www.leroberval.com<br>" +
						  "E-mail: <a href=\"mailto:info@leroberval.com\">info@leroberval.com</a>" +
						  "</span>";*/
			map.openInfoWindowHtml(pointA, myHtmlA);
			});
		map.addOverlay(markerA);
	}

	/*function ShowAddress(){
		document.getElementById("divadresse").style.display="block";
	}*/
