﻿// JScript 文件

//验证用户登入
function btnLogin()
{       
       if(Y("txtUserName").value==''){
       TreeAlertMsgShowMsg("帐号不能为空!","AlertMsg1");
        return false;
       }
        else if(Y("txtPwd").value==''){
       TreeAlertMsgShowMsg("密码不能为空!","AlertMsg1");
        return false;
       }
 

       else
       {
        return true;
       }
 
}

