document.writeln("<script language=\"javascript\">");
document.writeln("");
document.writeln("function Check_Form_Validator2(theform){");
document.writeln("");
document.writeln("if (theform.name.value==\"\") {");
document.writeln("");
document.writeln("alert(\'请输入姓名!\');");
document.writeln("");
document.writeln("theform.name.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("if (theform.tel.value==\"\") {");
document.writeln("");
document.writeln("alert(\'请输入电话!\');");
document.writeln("");
document.writeln("theform.tel.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("if (theform.tel.value.length < 6)");
document.writeln("");
document.writeln("{");
document.writeln("");
document.writeln("alert(\'电话请至少输入6位数!\');");
document.writeln("");
document.writeln("theform.tel.focus();");
document.writeln("");
document.writeln("return (false);");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("if (theform.tel.value.length > 15){");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("alert(\'电话请不要大于15位数!!\');");
document.writeln("");
document.writeln("theform.tel.focus();");
document.writeln("");
document.writeln("return (false);");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("var filter=\/^[0-9]{6,15}$\/");
document.writeln("");
document.writeln("if (filter.test(theform.tel.value)==0){");
document.writeln("");
document.writeln("alert(\'请输入合法的电话（只能为6-15位数字）!\');");
document.writeln("");
document.writeln("theform.tel.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("if (theform.email.value==\"\") {");
document.writeln("");
document.writeln("alert(\'请输入你的EMAIL!\');");
document.writeln("");
document.writeln("theform.email.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("var filter=\/^.+@.+\\..{2,3}$\/");
document.writeln("");
document.writeln("if (filter.test(theform.email.value)==0){");
document.writeln("");
document.writeln("alert(\'请输入合法的E-mail地址!\');");
document.writeln("");
document.writeln("theform.email.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("if (theform.username.value==\"\") {");
document.writeln("");
document.writeln("alert(\'请输入用户名!\');");
document.writeln("");
document.writeln("theform.username.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("if (theform.username.value.length < 3)");
document.writeln("");
document.writeln("{");
document.writeln("");
document.writeln("alert(\'用户名请至少输入3个字符!\');");
document.writeln("");
document.writeln("theform.username.focus();");
document.writeln("");
document.writeln("return (false);");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("if (theform.username.value.length > 15){");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("alert(\'用户名请不要大于15个字符!\');");
document.writeln("");
document.writeln("theform.username.focus();");
document.writeln("");
document.writeln("return (false);");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("var filter=\/[^!@#$%^&*()_+=|\\,.\/\\?\'\\\"<>]{3,15}\/");
document.writeln("");
document.writeln("if (filter.test(theform.username.value)==0){");
document.writeln("");
document.writeln("alert(\'请输入合法的用户名!\');");
document.writeln("");
document.writeln("theform.username.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("if (theform.password.value==\"\") {");
document.writeln("");
document.writeln("alert(\'请输入密码!\');");
document.writeln("");
document.writeln("theform.password.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("if (theform.password.value.length < 6)");
document.writeln("");
document.writeln("{");
document.writeln("");
document.writeln("alert(\'密码请至少输入6个字符!\');");
document.writeln("");
document.writeln("theform.password.focus();");
document.writeln("");
document.writeln("return (false);");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("if (theform.password.value.length > 20){");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("alert(\'密码请不要大于20个字符!\');");
document.writeln("");
document.writeln("theform.password.focus();");
document.writeln("");
document.writeln("return (false);");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("if (theform.confirmPassword.value==\"\") {");
document.writeln("");
document.writeln("alert(\'请输入第二次密码!\');");
document.writeln("");
document.writeln("theform.confirmPassword.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("if (theform.confirmPassword.value.length < 6)");
document.writeln("");
document.writeln("{");
document.writeln("");
document.writeln("alert(\'密码请至少输入6个字符!\');");
document.writeln("");
document.writeln("theform.confirmPassword.focus();");
document.writeln("");
document.writeln("return (false);");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("if (theform.password.value!=theform.confirmPassword.value) {");
document.writeln("");
document.writeln("alert(\'二次密码输入不相同!\');");
document.writeln("");
document.writeln("theform.password.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("<\/script>")