/*
function register2(theForm){
 if((theForm.username.value==null)||(theForm.username.value.length==0))
  {
  alert("用户名不能为空");
  return false;
  }
  if((theForm.password.value==null)||(theForm.password.value.length==0))
  {
  alert("密码不能为空");
  return false;
  }
  if(theForm.password.value!=theForm.confirm.value)
  {
  alert("输入的确认密码和原密码不一致，请重新输入密码");
  return false;
  }
  return true;
}
*/
function  checkSubmit(form,rule){
    form.submit();
}
function turnPage(form,pageNo){
  form.pageNo.value=pageNo;
  form.submit();
}
function orderBy(orderBy){
  pagerForm.orderBy.value=orderBy;
pagerForm.method="get";
  pagerForm.submit();
}
function changePage(form){
    form.pageNo.value=1;
    form.submit();
}
