/**
 * @author Tom
 */
function show(id) {
        document.getElementById(id).style.display = "";
}

function hide(id) {
         document.getElementById(id).style.display = "none";
}