/****************************************************************************************/
/* Fonction permettant d'afficher les mentions légales									*/
/****************************************************************************************/

function mentions(url) {
	window.open(url,"ml","width=450, height=500, scrollbars=yes, status=no");
}

/****************************************************************************************/
/* Fonction permettant d'afficher les photos en popup									*/
/****************************************************************************************/

function zoomImage(img,titre,w,h) {
	ff = window.open(img,"pop","width="+w+",height="+h+",left=10,top=10,scrollbars=no, status=no") ;
	if (ff) {
		ff.document.open(); 
		ff.document.write('<head><title>' + unescape(titre) + '<\/title><\/head>');
		ff.document.write('<body background=" '+ img + ' " onBlur="top.close()"><\/body>');
		ff.document.close();
	}
}

/****************************************************************************************/
/* Fonction permettant d'afficher la page courante dans une autre langue				*/
/****************************************************************************************/

function changeLanguage(from,to) {
	document.location = document.URL.replace("/"+from+"/", "/"+to+"/");
}

/****************************************************************************************/
/* Fonction permettant d'ouvrir le client de messagerie avec la bonne adresse			*/
/****************************************************************************************/

function mailto(email) {
	if(email!="") {
		document.location = "mailto:"+email;
	}
}