﻿function check() {
    if (document.all.txtUser.value == "") {
        alert("用户名不能为空！");
        document.all.txtUser.focus();
        return false;
    }

    if (document.all.txtPassword.value == "") {
        alert("密码不能为空！");
        document.all.txtPassword.focus();
        return false;
    }

    if (document.all.txtYanZhengMa.value == "") {
        alert("验证码不能为空！");
        document.all.txtYanZhengMa.focus();
        return false;
    }

    return true;
}
