function showDiv(divId) {
    var theDiv = document.getElementById(divId);
    theDiv.style.display = "block";
}

function hideDiv(divId) {
    var theDiv = document.getElementById(divId);
    theDiv.style.display = "none";
}