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