function toggleVisible( divID ) {
    var aDiv = document.getElementById(divID);
    if (aDiv != null) {
        if (aDiv.style.display == 'none' || aDiv.style.display == '') {
            aDiv.style.display = 'block';
        } else {
            aDiv.style.display = 'none';
        }
    }
}
