function PopupCentrer(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+",menubar=no,scrollbars=no,statusbar=no");
}

function validNews() {
	if (document.news.nom.value=='') {
		alert('Veuillez renseigner le champ nom');
		return false;
	}
	if (document.news.email.value.indexOf("@") == "-1" || document.news.email.value.indexOf(".") == "-1" || document.news.email.value == "") {
    	alert('Vérifiez votre adresse courriel');
    	return false;
	}
	return true;
}

function validContact() {
	if (document.contact.nom.value=='') {
		alert('Veuillez renseigner le champ nom');
		return false;
	}
	if (document.contact.mess.value=='') {
		alert('Veuillez renseigner le champ message');
		return false;
	}
	if (document.contact.mail.value.indexOf("@") == "-1" || document.contact.email.value.indexOf(".") == "-1" || document.contact.email.value == "") {
    	alert('Vérifiez votre adresse courriel');
    	return false;
	}
	return true;
}