        function expandCollapse(ElementId)
        {
        var theElement = document.getElementById(ElementId);
        theElement.style.display = (theElement.style.display == 'none') ? 'block' : 'none';
        }