function fcache(){

        hide_calque('r9');
        hide_calque('r3');
        hide_calque('r10');
        hide_calque('r13');
        nom_layer='';
}

function hide_calque(calque) {
        
        if (document.getElementById) {
                //IE 5 and NN 6 code
                document.getElementById(calque).style.visibility='hidden';
                }
                else if (document.layers) {
                        //NN4 code
                        document.layers[calque].visibility='hidden';
                        }
                        else {
                                //IE 4 code
                                document.all[calque].style.visibility='hidden';
                                }

        var nb_undersc = 0;
        // !!! TEST A FAIRE !!!
        // On compte le nombre de fois qu'il y a un "_" dans le menu, cad : menu_4 -> OK  menu_4_2 -> NON OK
        for (i=0;i<calque.length;i++)
        {
                if (calque.charAt(i) == "_")
                {
                        nb_undersc = nb_undersc + 1;
                }
        }
}

