function changePage(formName,actionName,pageNum){
	eval("document."+formName+".curPage.value='"+pageNum+"'");
	eval("document."+formName+"."+"action='"+actionName+"'");
	eval("document."+formName+".submit()");
}

function goToPage(formName,actionName,totalPage){
  var goPageValue=document.getElementById("goPage").value;
   if(goPageValue!=null&&goPageValue!=''){
    if(parseInt(goPageValue)<=parseInt(0)){
      alert('没有该页码!');
      return ;
    }
    if(parseInt(goPageValue)>parseInt(totalPage)){
      alert('没有该页码!');
     }else{
      changePage(formName,actionName,goPageValue);
     }    
    }else{
      alert('请填入调整页码!');
    }
}

