function popupcentree(page,largeur,hauteur,options) {
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
function fermer_cette_fenetre() {
	window.close();
}
/************************************************************************/
function change_cell(id) {
	document.getElementById(id).style.background = "#86071E";
}
function retab_cell(id) {
	document.getElementById(id).style.background = "#961D3A";
}
/************************************************************************/
function aff_sous_menu(id) {
	document.getElementById(id).style.display = "block";
}
function retab_sous_menu(id) {
	document.getElementById(id).style.display = "none";
}
/*************************************************************************/
function champ() {
	if (document.form_contact.frm_nom.value.length == 0) {
		alert("Veuillez introduire votre nom, Merci");
		return false;
	}
	if (document.form_contact.frm_email.value.length == 0) {
		alert("Veuillez introduire votre E-mail, Merci");
		return false;
	}
	if (document.form_contact.frm_com.value.length == 0) {
		alert("Veuillez introduire un commentaire, Merci");
		return false;
	}
}
