function mailer(nom,domaine){
return window.location.href="mailto:"+nom+"@"+domaine;
}
function changelangue(langue){
if(langue=="fr"){window.location.href="informations-fr.php";}
else if(langue=="en"){window.location.href="informations-uk.php";}
}

var gicons = [];
									var infobulle;
									var markerMember;

									function endroit() {
									  var address = 'Base de Plein Air et de Loisirs de Jablines France';
									  geocoder = new GClientGeocoder();
									  z = 12;
									  geocoder.getLatLng( address, function(point) {
										if (!point) {
										  alert("- "+address+" n'existe pas");
										}
										else {
										  var a =  point.lat();
										  var b =  point.lng();
										  initialisation(address,a,b,z);
										}
									  });
									}

									function initialisation(address,a,b,z) {
									  map = new GMap(document.getElementById('map'));
									  map.addControl(new GLargeMapControl3D());
									  map.addControl(new GMenuMapTypeControl());
									  map.checkResize();
									 
									  gicons[0] = new GIcon(G_DEFAULT_ICON, "http://www.weboblog.fr/flag_blue.png");
									  gicons[0].iconSize = new GSize(16,16);
									  gicons[0].shadow="";
									  gicons[0].iconAnchor = new GPoint(9,16);
									  gicons[0].infoWindowAnchor = new GPoint(9,9);

									  map.setCenter(new GLatLng(a,b), z);
									  if(address!=''){
										var geocoder = new GClientGeocoder();
										geocoder.getLatLng(address, function(point){ map.setCenter(point,z); });
									}
									infobulle  = '<table width="200px" border="0"  height="60px"><tr>';
									infobulle += '<td width="70px" align="left" valign="top">';
									infobulle += '<img src="http://www.weboblog.fr/package_network.png" /></td>';
									infobulle += '<td align="left" valign="top">';
									infobulle += '<p style=" font-family:Tahoma; font-size:10px; color: #8080ff;">';
									infobulle += '<b><u>Place of search</u> :</b><br /> '+address+'<br />';
									infobulle += '<b>Latitude</b>: '+a+'<br />';
									infobulle += '<b>Longitude</b>: '+b+'</p></td></tr></table>';
									markerMember = createMarker(new GLatLng(a,b),infobulle,gicons[0]); // Ajout du marqueur
									map.addOverlay(markerMember);
									}	

									function createMarker(point,html,icon){
									  var marker = new GMarker(point,icon);
									  GEvent.addListener(marker, "click", function() {
										marker.openInfoWindowHtml(html);
									  });
									  return marker;
									} 

									

