
function showHide(id) {
  document.getElementById(id).style.visibility = (document.getElementById(id).style.visibility == "visible") ? "hidden" : "visible"
  document.getElementById(id).style.position = (document.getElementById(id).style.position == "static") ? "absolute" : "static"
}


