// JavaScript Document
function LoadModalDiv()
    {
        var bcgDiv = document.getElementById("divBackground");
        bcgDiv.style.display="block";
        if (bcgDiv != null)
        {          
            if (document.body.clientHeight > document.body.scrollHeight)
            {
                bcgDiv.style.height = document.body.clientHeight + "px";
            }
            else
            {
                bcgDiv.style.height = document.body.scrollHeight + "px" ;
            }
            bcgDiv.style.width = "100%";
        }
    }
