﻿// JScript File

function sizeBackground()
{
    var scrollHeight = document.documentElement.scrollHeight;
    var clientHeight = document.documentElement.clientHeight;
    var myHeight;
    if (clientHeight > scrollHeight)
    {
        myHeight = clientHeight;   
    }
    else
    {
        myHeight = scrollHeight;
    }
    var bg = document.getElementById("tblbackground");
    var bg2 = document.getElementById("tblVeryBack");
    var browserName=navigator.userAgent; 
    if (browserName.indexOf("Safari") > -1)
    {
        bg.style.height = (document.body.scrollHeight - 32) + "px"; 
        bg2.style.height = (document.body.scrollHeight - 32) + "px"; 
    }
    else if (browserName.indexOf("Firefox") > -1)
    {
        bg.style.height = (myHeight - 32) + "px"; 
        bg2.style.height = (myHeight - 32) + "px"; 
    }
    else if (browserName.indexOf("MSIE") > -1)
    {
        bg.style.height = (myHeight - 32) + "px";
        bg2.style.height = (myHeight - 32) + "px";
    }
    else
    {
        bg.style.height = (myHeight - 32) + "px";
        bg2.style.height = (myHeight - 32) + "px";
    }
}























