
function echoSearch(){
    o = document.getElementById('recherche_fg');
    o.style.display == "block" ? o.style.display = "none" : o.style.display = "block";
    b = document.getElementById("btFiltre");
    o.style.display == "block" ? b.setAttribute("src", url + "recherche_fermer.png") : b.setAttribute("src", url + "recherche.png");
    o.style.display == "block" ? b.setAttribute("alt", url + "Fermez la recherche") : b.setAttribute("alt", "Affichez la recherche");
    o.style.display == "block" ? b.setAttribute("title", url + "Fermez la recherche") : b.setAttribute("title", "Affichez la recherche");
}


