// JavaScript Document
//-- verfication du formulaire
function setMenuState(elm){
	document.getElementById(elm).style.fontWeight='bold';
}
function control_form(form){
var vf = new Verif_form(form, "");
vf.add_object("nom","vide",null,"Le nom est obligatoire");
vf.add_object("mail","mail",null,"Adresse e-mail non valide");
vf.add_object("message","vide",null,"Vous n'avez pas saisi de message!");
 return vf.control();
}
//-----------
function centerPopUp (file,w,h,scrollbar,name){
var cx = Math.round ((screen.availWidth / 2) - (w / 2));
var cy = Math.round ((screen.availHeight / 2) - (h / 2));
scrollbar=(scrollbar == "undefined")?'no':scrollbar;
name=(name == "undefined")?'popUp':name;
window.open(file, name, 'height='+ h +', width='+ w +', top='+ cy +', left='+ cx +', toolbar=no, menubar=yes, location=no, toolbar = no,resizable=yes, scrollbars='+scrollbar+', status=no');
}