function screenResize() {

    //alert(document.frmLogin.style.height);

    var winH, winW;

    if (navigator.appName.indexOf("Microsoft") != -1) {
        
            document.all[1].style.overflow = 'auto';

            winW = document.all[1].clientWidth;

            winH = document.all[1].clientHeight;
        
    } else {

        winW = window.innerWidth;

        winH = window.innerHeight;

    }

    document.forms[0].style.height = winH +'px';

    //alert(window.screen.height-110);        

    //alert(document.frmLogin.style.height);        

}

 
