function open_window(page,largeur,hauteur){
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",'resizable=no,menubar=no,scrollbars=yes,statusbar=no'");
}
function expandWoimg(BlockName) {
	if (document.getElementById(BlockName).style.display == "block") {
		document.getElementById(BlockName).style.display = "none";
	} else {
		document.getElementById(BlockName).style.display = "block";
	}
}
function validMail(email) { // vérif validité email par REGEXP
	 var reg = /^[a-z0-9._-]+@[a-z0-9.-]{2,}[.][a-z]{2,3}$/
	 return (reg.exec(email)!=null)
}
function validInscriptNL() {
	if(document.forms['nl'].elements['email'].value!="")
	{
		if(validMail(document.forms['nl'].elements['email'].value))
		{
			document.forms['nl'].submit();
		}
		else
		{
			alert("Veuillez préciser un e-mail valide");
		}
	}
	else
	{
		alert("Veuillez préciser votre e-mail");
	}
}