function controle_annonce(){
    if (document.annonce.nom.value.length == 0){
        alert("Veuiller saisir votre nom");
        return false;
    }
    if (document.annonce.email.value.length == 0){
        alert("Veuiller saisir votre email");
        return false;
    }
    if (document.annonce.lieu.value.length == 0){
        alert("Veuiller saisir le lieu pour votre annonce");
        return false;
    }
    if (document.annonce.annonce.value.length == 0){
        alert("Veuiller saisir votre nom");
        return false;
    }      
         return true;
}

