<!--
function verif(theForm){
	
	var choixSujet = (
		!theForm.f_Menage.checked &&
		!theForm.f_Repassage.checked &&
		!theForm.f_Aide_a_domicile.checked &&
		!theForm.f_Baby_sitting.checked &&
		!theForm.f_Jardinage.checked &&
		!theForm.f_Bricolage.checked
	);

	if( choixSujet	){
		alert("Veuillez indiquer au moins une prestation.");
		theForm.f_Menage.focus();
		return false ;
	} else if( !theForm.f_Civilite.selectedIndex ){
		alert("Veuillez indiquer votre Civilité.");
		theForm.f_Civilite.focus();
		return false ;
	} else if( !theForm.f_Nom.value.trim().length ){
		alert("Veuillez indiquer votre Nom.");
		theForm.f_Nom.focus();
		return false ;
	} else if( !theForm.f_Prenom.value.trim().length ){
		alert("Veuillez indiquer votre Prénom.");
		theForm.f_Prenom.focus();
		return false ;
	// test adresse seulement si par courrier
	} else if( theForm.c_PageEnd.value.indexOf("courrier") != -1 && !theForm.f_Adresse.value.trim().length ){
		alert("Veuillez indiquer votre Adresse\nafin de recevoir par courrier la documentation.");
		theForm.f_Adresse.focus();
		return false ;
	} else if( !theForm.f_Code_postal.value.trim().length || theForm.f_Code_postal.value.trim().length < 5){
		alert("Veuillez indiquer votre Code postal.");
		theForm.f_Code_postal.focus();
		return false ;
	} else if( !theForm.f_Ville.value.trim().length ){
		alert("Veuillez indiquer votre Ville.");
		theForm.f_Ville.focus();
		return false ;
	} else if( theForm.f_Tel_1.value.trim().length < 10 || !chiffre(theForm.f_Tel_1.value.trim(), "Tel") ){
		alert("Veuillez indiquer votre Téléphone.");
		theForm.f_Tel_1.focus();
		return false ;
	} else if( !theForm.f_Ville.value.trim().length ){
		alert("Veuillez indiquer votre Ville.");
		theForm.f_Ville.focus();
		return false ;
	} else if( theForm.f_Email.value.trim().length && !is_email(theForm.f_Email.value.trim()) ){
		alert("Veuillez indiquer correctement votre Email.");
		theForm.f_Email.focus();
		return false ;
	} else if( !theForm.f_Connu_grace_a.selectedIndex ){
		alert("Veuillez préciser comment vous avez connu A L'AIDE des particuliers.");
		theForm.f_Connu_grace_a.focus();
		return false ;
	} else {
		if(window.confirm("Confirmez-vous la demande de documentation")){
			theForm.c_MailExpediteur.value = theForm.f_Email.value.trim() ;
			return true;
		} else {
			return false ;
		}
	}
}
//-->
