        window.onload = function() {
            var htmlStyle = document.getElementsByTagName('html')[0].style;
            var bodyStyle = document.body.style;
            bodyStyle.scrollbarArrowColor = htmlStyle.scrollbarArrowColor = '#C2CAD1';
            bodyStyle.scrollbarFaceColor = htmlStyle.scrollbarFaceColor = '#053E66';
            bodyStyle.scrollbarTrackColor = htmlStyle.scrollbarTrackColor = '#C2CAD1';
            bodyStyle.scrollbarHighlightColor = htmlStyle.scrollbarHighlightColor = '#2A5B7D';
        }
		
		function modalShow(targetSrc, titleText) {
            moveModal();
            document.getElementById("modal").style.display = "block";
            document.getElementById("modalTable").style.display = "block";
        }

        function modalClose() {
            document.getElementById("modal").style.display = "none";
            document.getElementById("modalTable").style.display = "none";
        }

        function moveModal() {
            document.getElementById("modal").style.top = document.body.scrollTop + "px";
            document.getElementById("modalTable").style.left = ((document.body.clientWidth / 2) - 160) + "px";
            document.getElementById("modalTable").style.top = (document.documentElement.scrollTop + ((document.body.clientHeight / 2) - 182)) + "px";
        }