﻿        function ModalPopup(ID)
        {
            document.getElementById('ctl00_ContentPlaceHolder1_textID').value = ID;
            document.getElementById('ctl00_ContentPlaceHolder1_JSActivateModal').click();
        }
        function showMonth(month)
        {
            var myMonth = document.getElementById(month);
            var myExpandMonth = document.getElementById('expand' + month);
            if(myMonth.style.display != 'block')
            {
                myMonth.style.display = 'block';
                myExpandMonth.innerText = "-";
            }
            else
            {
                myMonth.style.display = 'none';
                myExpandMonth.innerText = "+";
            }
        }
