function showHide(targetID) { theTarget = document.getElementById(targetID); if(theTarget.style.display == "none") { theTarget.style.display = "block"; } else { theTarget.style.display = "none"; } }