// JavaScript Document
function lienactif(nom,param){
  document.getElementById(nom).style.backgroundImage=param;
}
function lieninactif(nom,param){
  document.getElementById(nom).style.backgroundImage=param;
}
  
function affiche(param) {
     document.getElementById(param).style.display="block";
}
function efface(param) {
  document.getElementById(param).style.display="none";
}


