<!--
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 &&
		!theForm.f_Tarifs.checked &&
		!theForm.f_Avantages_fiscaux.checked &&
		!theForm.f_CESU.checked &&
		!theForm.f_Aide_financiere_seniors.checked &&
		!theForm.f_Zone_intervention.checked 
	);

	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 ;
	} 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.value.trim().length < 10 || !chiffre(theForm.f_Tel.value.trim(), "Tel") ){
		alert("Veuillez indiquer votre numéro de téléphone.");
		theForm.f_Tel.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( choixSujet	){
		alert("Veuillez indiquer au moins un sujet d'appel.");
		return false ;
	} else if( !theForm.f_Connu_grace_a.selectedIndex ){
		alert("Veuillez indiquer comment vous nous avez connu.");
		theForm.f_Connu_grace_a.focus();
		return false ;
	} else {
		theForm.c_MailExpediteur.value = theForm.f_Email.value.trim() ;
		return true;
	}
}
//-->
