function showElement(id) { document.getElementById(id).style.display = "block"; } function hideElement(id) { document.getElementById(id).style.display = "none"; } function toggleElement(id) { if (document.getElementById(id).style.display == "block") { hideElement(id) } else { showElement(id) } }