function toogleHidden(elid){
  el = document.getElementById(elid);
  el.style.display = el.style.display?'':'none';
}