    function toggleVisibility(elementID) {
        var theDiv = document.getElementById(elementID);
        if (theDiv.style.display=='none')
            theDiv.style.display = '';
        else
            theDiv.style.display = 'none';
    }