
function cris_off() {

for (i=1 ; i<=16 ; i++) {
var detail = document.getElementById("cri"+i);
if (detail) {detail.style.display='none';}

}

}


function init_cri() {
cris_off();
affiche_cri('1')



}



function affiche_cri(quoi) {
cris_off();
var detail = document.getElementById("cri"+quoi);
if (detail) {detail.style.display='block';}


hide_outil('liste_cris');
}
