﻿// JScript File

var myWidth = 0, myHeight = 0,maxHeight=380,scroll=0, marginHeightTop=0, marginWidthLeft=0;
var SiteHeight = 566;
var SiteWidth = 999;
var IsSetMaxHeight = true;
function Resize() 
{
    if( typeof( window.innerWidth ) == 'number' ) 
    {
        //Non-IE
        myWidth = window.innerWidth;
        myHeight = window.innerHeight;
    } 
    else if( document.documentElement &&( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) 
    {
        //IE 6+ in 'standards compliant mode'
        myWidth = document.documentElement.clientWidth;
        myHeight = document.documentElement.clientHeight;
    }
    else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) 
    {
        //IE 4 compatible
        myWidth = document.body.clientWidth;
        myHeight = document.body.clientHeight;
    }
 //    alert('myWidth  ' + myWidth);
    //  alert('SiteWidth  ' + SiteWidth);
    if (myWidth > SiteWidth)
    {
        var marginWidth = myWidth - SiteWidth;
        marginWidthLeft = marginWidth /2;
      //  divMarginLeft
     //   alert('marginWidthLeft1  ' + marginWidthLeft);
     if (document.getElementById('divMarginLeft'))
        {
            document.getElementById('divMarginLeft').style.width = marginWidthLeft+"px";
        }
    }
    else
    {
    if (document.getElementById('divMarginLeft'))
        {
            document.getElementById('divMarginLeft').style.width = "0px";
        }
    }
    if (myHeight > SiteHeight)
    {
        var marginHeight = myHeight - SiteHeight;
        marginHeightTop =   marginHeight /2;
        if (document.getElementById('divPage'))
        {
            document.getElementById('divPage').style.marginTop = marginHeightTop+"px";
        }
    }
    else
    {
    if (document.getElementById('divPage'))
        {
            document.getElementById('divPage').style.marginTop = "0px";
        }
    }
}
    
 window.onload = Resize;
 window.onresize = Resize;
 //window.onrefresh = SetNotifysOnTrue()

