function showAddress(address_google_map, zoom, adressWindow) {
	var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());

	//map.disableDragging();


	// Création de mini icones
	var icon = new GIcon();
	icon.image = "http://www.beauchamp.fr/design/images/gg_pointeur.png";
	// icon.shadow = "http://www.monsieurstore.com/design/images/gg_pointeur.png";
	icon.iconSize = new GSize(278, 80);
	// icon.shadowSize = new GSize(22, 20);
	icon.iconAnchor = new GPoint(103, 79);
	icon.infoWindowAnchor = new GPoint(100, 1);
	
	
	var address = address_google_map;

	if (lat != '') {
		map.setCenter(new GLatLng(lat, lng), zoom);
		var mark = new GMarker(new GLatLng(lat, lng), icon);
		map.addOverlay(mark);
		// mark.openInfoWindowHtml(address);
		GEvent.addListener(mark, "click", function() {
			mark.openInfoWindowHtml(adressWindow);
		});
	}
	else {
		var geocoder = new GClientGeocoder();
		geocoder.getLatLng(
			address,
			function(point) {
				if (!point) {
					$('map').innerHTML = '<div style="width: 206px; height: 126px; margin: 5px 0 0 5px; font-size: 10px; color: #E23112; background-color: #fff; border: 2px solid #392d20; text-align: center; padding: 120px 20px 0;">Désolé, <strong>' + address + '</strong> n\'a pu être localisée sur Google MAP !</div>';
				}
				else {
					map.setCenter(point, zoom);
					var mark = new GMarker(point, icon);
					map.addOverlay(mark);
					//mark.openInfoWindowHtml(address);
					GEvent.addListener(mark, "click", function() {
						mark.openInfoWindowHtml(adressWindow);
					});
				}
			}
		);
	}
}
