function glisser(couche) {
  var tmp = document.getElementById('Couche'+couche)
  if(tmp.style.display=='none')
  {
    tmp.style.display='block'
    var statut=true
  }
  else
  {
    tmp.style.display='none'
    var statut=false
  }
  delete tmp
  return statut
}
function glisser_txt(couche,off,on) {
  var statut = glisser(couche)
  var tmp = document.getElementById(couche).childNodes[0]
  
  if(statut)
    tmp.nodeValue=on
  else
    tmp.nodeValue=off
}
