// JavaScript Document<!--function Valider(theForm) {if (theForm.prenom.value == ""){alert("Vous devez renseigner le champs suivant : \"Prenom\".");theForm.prenom.focus();return (false);}if (theForm.nom.value == ""){alert("Vous devez renseigner le champs suivant : \"Nom\".");theForm.nom.focus();return (false);}if (theForm.adresse.value == ""){alert("Vous devez renseigner le champs suivant : \"Adresse\".");theForm.adresse.focus();return (false);}if (theForm.cp.value == ""){alert("Vous devez renseigner le champs suivant : \"Code postal\".");theForm.cp.focus();return (false);}if (theForm.localite.value == ""){alert("Vous devez renseigner le champs suivant : \"Localite\".");theForm.localite.focus();return (false);}if (theForm.email.value == ""){alert("Vous devez renseigner le champs suivant : \"E-mail\".");theForm.email.focus();return (false);}if (theForm.reserve.checked == false){alert("Merci de confirmer votre reservation en cochant la case.");theForm.reserve.focus();return (false);}return (true);}//-->
