var geocoder=new GClientGeocoder();function showAddress(){var C;var A=document.getElementById("ctl00_ContentPlaceHolder1_address").value;var B=document.getElementById("ctl00_ContentPlaceHolder1_postcode").value;var D=document.getElementById("ctl00_ContentPlaceHolder1_ville").value;A=A+" "+B+" "+D;document.getElementById("map_container").style.display="block";if(GBrowserIsCompatible()){C=new GMap2(document.getElementById("map"));C.setCenter(new GLatLng(48.9,2.35),13);}geocoder.getLocations(A,function(E){C.clearOverlays();if(!E||E.Status.code!=200){alert('"'+A+'" not found');}else{place=E.Placemark[0];point=new GLatLng(place.Point.coordinates[1],place.Point.coordinates[0]);marker=new GMarker(point);C.addOverlay(marker);setPostCode(place.AddressDetails.Country.AdministrativeArea.SubAdministrativeArea.Locality.PostalCode.PostalCodeNumber,place.AddressDetails.Country.AdministrativeArea.SubAdministrativeArea.Locality.LocalityName);marker.openInfoWindowHtml(place.address+"<br>"+"<b>Country code:</b> "+place.AddressDetails.Country.CountryNameCode);}});}function showAddressPro(){var C;var A=document.getElementById("ctl00_ContentPlaceHolder1_txt_adresse").value;var B=document.getElementById("ctl00_ContentPlaceHolder1_txt_postcode").value;var D=document.getElementById("ctl00_ContentPlaceHolder1_txt_ville").value;A=A+" "+B+" "+D;document.getElementById("map_container").style.display="block";if(GBrowserIsCompatible()){C=new GMap2(document.getElementById("map"));C.setCenter(new GLatLng(48.9,2.35),13);}geocoder.getLocations(A,function(E){C.clearOverlays();if(!E||E.Status.code!=200){alert('"'+A+'" not found');}else{place=E.Placemark[0];point=new GLatLng(place.Point.coordinates[1],place.Point.coordinates[0]);marker=new GMarker(point);C.addOverlay(marker);setPostCodePro(place.AddressDetails.Country.AdministrativeArea.SubAdministrativeArea.Locality.PostalCode.PostalCodeNumber,place.AddressDetails.Country.AdministrativeArea.SubAdministrativeArea.Locality.LocalityName);marker.openInfoWindowHtml(place.address+"<br>"+"<b>Country code:</b> "+place.AddressDetails.Country.CountryNameCode);}});}function closeMap(){document.getElementById("map_container").style.display="none";}function setPostCode(A,B){document.getElementById("ctl00_ContentPlaceHolder1_postcode").value=A;document.getElementById("ctl00_ContentPlaceHolder1_ville").value=B;}function setPostCodePro(A,B){document.getElementById("ctl00_ContentPlaceHolder1_txt_postcode").value=A;document.getElementById("ctl00_ContentPlaceHolder1_txt_ville").value=B;}function setStyle(A){A.style.background="#fcf9f6";A.style.border="1px solid #f18b34";}function deleteStyle(A){A.style.background="#fff";A.style.border="1px solid #cfd6dd";}
