function toggleVisibility(el,visible) {
  document.getElementById(el).style.visibility = visible?'visible':'collapse';
}

