function CheckInput() { var userAccount =(document.login_form.UserAccount.value); if (userAccount=="") { alert("通行证用户名不能为空!"); document.login_form.UserAccount.focus(); return false; } if (userAccount.length<6 || userAccount.lenth>48) { alert("通行证用户名应该在6-48字节之间!"); document.login_form.UserAccount.focus(); return false; } var valid_char="abcdefghijklmnopqrstuvwxyz1234567890_-@."; var lowerChar=userAccount.toLowerCase(); var i; for (i=0;i<=lowerChar.length;i++) { var the_char=lowerChar.charAt(i); if(valid_char.indexOf(the_char)<0) { alert('通行证用户名不合法!') document.login_form.UserAccount.focus(); return false; } } var userPassword =(document.login_form.UserPassword.value); if(userPassword.length<6||userPassword.length>24) { alert("密码应该在6-24字节之间!"); document.login_form.UserPassword.focus(); return false; } return true; } document.write("
通行证用户名
密  码
新用户注册 找回密码 帮助
");