// JavaScript Document

function affiche(div_id_toshow, div_id_tohide, class1, class2)
    {
        document.getElementById(div_id_toshow).style.display="block";
        document.getElementById(div_id_tohide).style.display="none";
    }
