var map=null;var geocoder=null;
function initialize(Cox,Coy,lehtml){

	if(GBrowserIsCompatible()){
		map=new GMap2(document.getElementById('map'));
		map.setCenter(new GLatLng(Cox,Coy),14);
		map.addControl(new GSmallMapControl());
		geocoder=new GClientGeocoder();
		var marker = new GMarker(new GLatLng(Cox,Coy)); // Initialisation d'un marker
        map.addOverlay(marker); // Affichage du marker
        marker.openInfoWindowHtml('<span style="color:black;font-size:16px;font-weight:bold;">'+lehtml+'</span>');
	}
}
function showAddress(address,pays){if(GBrowserIsCompatible()){map=new GMap2(document.getElementById('map'));map.addControl(new GSmallMapControl());map.setCenter(new GLatLng(0,0),0);geocoder=new GClientGeocoder();}if(geocoder){geocoder.getLatLng(address+pays,function(point){if(!point){alert(address+" not found");}else{map.setCenter(point,15);var marker=new GMarker(point);map.addOverlay(marker);marker.openInfoWindowHtml('<span style="color:black;font-size:14px;">'+lehtml+'</span>');}});}}
