function checkWholeForm26356(theForm)
{
    var why = "";if (theForm.Username) why += isEmpty(theForm.Username.value, "Username");
    if (theForm.Password) why += isEmpty(theForm.Password.value, "Password");if (why != "")
    {
        alert(why);return false;
    }
    theForm.submit();return false;
}