﻿// JScript 文件

function CheckLoginInput(object)
{
   
    var username = object.user_name.value;
    var userpassword = object.user_password.value;
    var confirmcode = object.confirm_code.value;
    if(username=="")
    {
        alert("请输入您的会员登录名！");
        object.user_name.focus();
        return false;
    }
    
    if(userpassword=="")
    {
        alert("请输入登录密码！");
        object.user_password.focus()
        return false;
    }
    
    if(confirmcode=="")
    {
        alert("请输入登录验证码（输入框右侧的4位数字）！");
        object.confirm_code.focus();
        return false;
    }

}


function URL_Redirect( URL )
{
    setTimeout("location.href='"+URL+"'", 3000);    
}
