//Fonction testant les champs : Nom, Telephone, email
function verif_saisie_8() {

        var valide=0;

        //Test du champ nom
        if(document.getElementById('nom').value.length>1){
                valide++;
        }
        else{
                document.getElementById('nom').style.backgroundColor="#ffdfdf";
        }

        //Test du champ telephone
        if(document.getElementById('telephone').value.length>=10){
                valide++;
        }
        else{
                document.getElementById('telephone').style.backgroundColor="#ffdfdf";
        }

        //Test du champ message
        if(document.getElementById('email').value.length>=5){
                valide++;
        }
        else{
                document.getElementById('email').style.backgroundColor="#ffdfdf";
        }



        if(valide<3){
                message_asterix();
                return false;
        }
        else{
                return true;
        }
}