function showElement(id) {
   document.getElementById(id).style.visibility = "visible";
}

function hideElement(id) {
   document.getElementById(id).style.visibility = "hidden";
}