function openClose(id) {
    document.getElementById(id).style.display = (document.getElementById(id).style.display == "none")? "inline" : "none";
}
