<!--
function verif(theForm){

	if( theForm.nom.value.length <= 2 ){
		alert("Veuillez indiquer votre nom.");
		theForm.nom.focus();
		return (false);

	} else if ( theForm.email.value.length > 0 && Valid_Email(theForm.email.value) == "" ){
		alert("Veuillez indiquer votre email correctement.");
		theForm.email.focus();
		return (false);		

	} else if ( theForm.message.value.length  < 5  ){
		alert("Veuillez indiquer votre message.");
		theForm.message.focus();
		return (false);		

	} else {
		return (true);	
	} 
}


//-->