<!--
function verif(theForm){
		
	theForm.f_Date_de_naissance.value = theForm.jour_naissance.value+"/"+theForm.mois_naissance.value+"/"+theForm.annee_naissance.value ;
	
	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
	);

	var choixDispo = (
		!theForm.f_Lundi_Matin.checked && !theForm.f_Lundi_Apres_Midi.checked &&
		!theForm.f_Mardi_Matin.checked && !theForm.f_Mardi_Apres_Midi.checked &&
		!theForm.f_Mercredi_Matin.checked && !theForm.f_Mercredi_Apres_Midi.checked &&
		!theForm.f_Jeudi_Matin.checked && !theForm.f_Jeudi_Apres_Midi.checked &&
		!theForm.f_Vendredi_Matin.checked && !theForm.f_Vendredi_Apres_Midi.checked &&
		!theForm.f_Samedi_Matin.checked && !theForm.f_Samedi_Apres_Midi.checked &&
		!theForm.f_Dimanche_Matin.checked && !theForm.f_Dimanche_Apres_Midi.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_Nationalite.selectedIndex ){
		alert("Veuillez indiquer votre Nationalité.");
		theForm.f_Nationalite.focus();
		return false ;
	} else if( !verifdate(theForm.f_Date_de_naissance.value) ){
		alert("Veuillez indiquer votre Date de naissance.");
		theForm.jour_naissance.focus();
		return false ;
	} else if( !theForm.f_Adresse.value.trim().length ){
		alert("Veuillez indiquer votre Adresse.");
		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 numéro de téléphone.");
		theForm.f_Tel_1.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_Nombre_heure_souhaitee_par_semaine.value.trim().length || !chiffre(theForm.f_Tel_1.value.trim(), "Num") ){
		alert("Veuillez indiquer le nombre d'heures souhaitées par semaine.");
		theForm.f_Nombre_heure_souhaitee_par_semaine.focus();
		return false ;
	} else if( choixDispo ){
		alert("Veuillez indiquer au moins une disponibilité.");
		return false ;
	} else if( !theForm.f_Vehicule[0].checked && !theForm.f_Vehicule[1].checked ){
		alert("Veuillez indiquer si vous êtes véhiculé.");
		return false ;
	} else if( choixSujet	){
		alert("Veuillez indiquer au moins un choix d'intéressement.\nMénage,Repassage, Aide à domicile, Garde d'enfants, Jardinage, Bricolage.");
		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 if( !theForm.f_Motivations.value.trim().length ){
		alert("Veuillez indiquer vos motivations.");
		theForm.f_Motivations.focus();
		return false ;
	} else {
		theForm.c_MailExpediteur.value = theForm.f_Email.value.trim() ;
		return true;
	}
}
//-->
