function hideElem(id) {
  document.getElementById(id).style.display = "none";
}

function showElem(id) {
  document.getElementById(id).style.display = "inline";
}
