function gmap_init(a,d,i) {
		var desc=d;
		var address=a;
		var id=i;
		var MapDiv = document.getElementById('map'+id)
		var map = new GMap2(MapDiv);
        map.addControl(new GHierarchicalMapTypeControl());
		map.addControl(new GSmallZoomControl());
		map.disableDragging();
		
		// Pour supprimer les copyritghts sur la mini map
        var CopyrightDiv = MapDiv.firstChild.nextSibling;
        var CopyrightImg = MapDiv.firstChild.nextSibling.nextSibling;
        CopyrightDiv.style.display = "none";
        CopyrightImg.style.display = "none";
		var geocoder = new GClientGeocoder(); 
		geocoder.setBaseCountryCode('fr');
		var pointSW = new GLatLng(45.9, 2.2);
		var pointNE = new GLatLng(46.7, 3);
		geocoder.setViewport(new GLatLngBounds(pointSW, pointNE));
				if (geocoder) {
				geocoder.getLatLng(
					address,
					function(point) {
						if (!point) {
							alert(address + " not found");
						}
						else {								
        						map.setCenter(point, 15);
        						var marker = new GMarker(point);
							map.addOverlay(marker);
						}
					}
				);
			};
		}
