function toggleDiv(elId) {
    el  = document.getElementById(elId);
    el.style.display    = (el.style.display == 'block') ? 'none' : 'block';
}