<!--
function verif(theForm){

	if( theForm.nom.value.length <= 2 ){
		alert("Veuillez indiquer votre nom.");
		theForm.nom.focus();
		return (false);
		
	} else if ( theForm.prenom.value.length <= 2 ){
		alert("Veuillez indiquer le prénom.");
		theForm.prenom.focus();
		return (false);
		
	} else if ( theForm.ville.value.length <= 2 ){
		alert("Veuillez indiquer votre ville.");
		theForm.ville.focus();
		return (false);
		
	} else if ( theForm.email.value.length == 10 || Valid_Email(theForm.email.value, '') == "" ){
		alert("Veuillez préciser une adresse mail valide.");
		theForm.email.focus();
		return (false);
		
	} else if ( theForm.tel.value.length > 0 && ( theForm.tel.value.length < 10 || !chiffre(theForm.tel.value,"Tel") ) ){
		alert("Veuillez préciser correctement votre téléphone.");
		theForm.tel.focus();
		return (false);
		
	} else if ( theForm.objet.selectedIndex == 0 ){
		alert("Veuillez indiquer votre objet.");
		theForm.objet.focus();
		return (false);
	
	} else if ( theForm.message.value.length  < 5  ){
		alert("Veuillez indiquer votre message.");
		theForm.message.focus();
		return (false);		

	} else {
		return (true);	
	} 
}


//-->