function showHide(e) {
    obj = document.getElementById(e);
    obj.style.display = (obj.style.display == "block" ? "none" : "block");
}