document.writeln("<SCRIPT language=javascript>");
document.writeln("");
document.writeln("<!--");
document.writeln("");
document.writeln("function Check_Form_Validator(theform)");
document.writeln("");
document.writeln("{");
document.writeln("");
document.writeln("if (theform.orderNum.value==\"\")");
document.writeln("");
document.writeln("{");
document.writeln("");
document.writeln("alert(\'请输入订单号！\');");
document.writeln("");
document.writeln("theform.orderNum.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("if (theform.orderNum.value.length < 6)");
document.writeln("");
document.writeln("{");
document.writeln("");
document.writeln("alert(\'订单号请至少输入6个字符!\');");
document.writeln("");
document.writeln("theform.orderNum.focus();");
document.writeln("");
document.writeln("return (false);");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("var filter=\/^[0-9]{6}$\/");
document.writeln("");
document.writeln("if (filter.test(theform.orderNum.value)==0){");
document.writeln("");
document.writeln("alert(\'请输入合法的订单号（只能为6位数字）!\');");
document.writeln("");
document.writeln("theform.orderNum.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("if (theform.money.value==\"\") {");
document.writeln("");
document.writeln("alert(\'请输入你要补交的金额!\');");
document.writeln("");
document.writeln("theform.money.focus();");
document.writeln("");
document.writeln("return false;");
document.writeln("");
document.writeln("}");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("var filter=\/^[0-9]{1,8}$\/");
document.writeln("");
document.writeln("if (filter.test(theform.money.value)==0){");
document.writeln("");
document.writeln("alert(\'请输入合法的金额!（只能为1-8位数字）!\');");
document.writeln("");
document.writeln("theform.money.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>")