function showPwd(el, txt1, txt2)
{        
    var pwdDiv = $('#l_pwd_send'), el = $(el);
    if (pwdDiv.css('display') == 'block')
    {
        pwdDiv.hide('normal');
        el.text(txt1);
    }
    else
    {
        pwdDiv.show('normal');
        el.text(txt2);
    }
}
function submitLogin()
{   
    submitWH();
    var lang = $('#language').val();
    var wbs = $('#website').val();
    $('#LANG').val(lang);
    $('#WBS').val(wbs);
}
function submitWH()
{
    var w = 0, h = 0;
    w = screen.width;
    h = screen.height;
    if (w == 0 || h == 0)
    {
        if(document.layers) {
            w = window.innerWidth;
            h = window.innerHeight;
        } else {
            w = document.body.offsetWidth;
            h = document.body.offsetHeight;
        }
    }
    $('#ScreenWidth').val(w);
    $('#ScreenHeight').val(h);
}
