//=================================================================================================================
function center(cBox,iWidth,iHeight)
{
        if(navigator.appName=="Netscape Navigator"|| navigator.appName=="Netscape")
        {
                if(window.innerHeight / 2 - (iHeight/2)>=0)
                {
                        document.getElementById(cBox).style.top = Math.round(window.innerHeight / 2 - (iHeight/2));
                }
                else
                {
                        document.getElementById(cBox).style.top = 0;
                }
                if(window.innerWidth / 2 - (iWidth/2)>=0)
                {
                        document.getElementById(cBox).style.left = Math.round(window.innerWidth  / 2 - (iWidth/2));
                }
                else
                {
                        document.getElementById(cBox).style.left = 0;
                }
        }
        else if (navigator.appName=="Microsoft Internet Explorer")
        {
                if(document.body.offsetHeight / 2 -  (iHeight/2)>=0)
                {
                        document.getElementById(cBox).style.top = Math.round(document.body.offsetHeight / 2 -  (iHeight/2));
                }
                else
                {
                        document.getElementById(cBox).style.top = 0;
                }
                if(document.body.offsetWidth / 2 - (iWidth/2)>=0)
                {
                        document.getElementById(cBox).style.left = Math.round(document.body.offsetWidth / 2 - (iWidth/2));
                }
                else
                {
                        document.getElementById(cBox).style.left = 0;
                }

        }
}
//=================================================================================================================

