<!--
function maporama(adress,postcode,city)
{
url = "http://www.nuiteejour.com/googlemap/map.php?adress="+adress+"&city="+city+"&postcode="+postcode+"&contry=fr";
window.open(url,"","toolbar=0,location=0,directories=0,menuBar=0,resizable=0,scrollbars=no,width=515,height=515");
}
function mapquest(codepost,city,country)
{
	if(country == 'gb'){
		url = "http://www.mapquest.com/maps/map.adp?city="+city+"&Postcode="+codepost+"&style=2&country=FR&cid=lfmaplink";
	}
	else {
		url = "http://www.mapquest.fr/mq/maps/linkToMap.do?city="+city+"&Postcode="+codepost+"&style=2&country=FR&cid=lfmaplink";
	}
	window.open(url,"","toolbar=0,location=0,directories=0,menuBar=0,resizable=0,scrollbars=no,width=800,height=750,left=10,top=5");
}

function ShowCible(cible) {
	document.getElementById('informations').style.display="none";
	document.getElementById('desc').style.display="none";
	document.getElementById('loisirs').style.display="none";
	document.getElementById('contact').style.display="none";
	document.getElementById('tarifs').style.display="none";
	document.getElementById('galery').style.display="none";
	document.getElementById(cible).style.display="block";
}
//-->

