 function changeDisplay(id){
 var elem = document.getElementById(id);
 elem.style.display = elem.style.display == "none" ? "block" : "none";
 }
