function   GetPageNavi(Page,PageNum)   
  {   
  document.write("All &nbsp;"   +   PageNum   +   "&nbsp; Page");   
  document.write("&nbsp;&nbsp;");   
  document.write("Now &nbsp;"   +   Page   +   "&nbsp;Page");   
  document.write("&nbsp;&nbsp;");   
  if(PageNum>1)   
  {   
  if(Page==1)   
  {   
  document.write("<a>Frist</a>");   
  document.write("&nbsp;&nbsp;");   
  document.write("<a>Previous</a>");   
  document.write("&nbsp;&nbsp;");   
  document.write("<a   href=\"javascript:JumpPage("   +   (Page+1)   +   ")\">Next</a>");   
  document.write("&nbsp;&nbsp;");   
  document.write("<a   href=\"javascript:JumpPage("   +   PageNum   +   ")\">Last</a>");   
  document.write("&nbsp;&nbsp;");   
  }   
  else   if(Page<PageNum)   
  {   
  document.write("<a   href=\"javascript:JumpPage(1)\">Ê×Ò³</a>");   
  document.write("&nbsp;&nbsp;");   
  document.write("<a   href=\"javascript:JumpPage("   +   (Page-1)   +   ")\">Previous</a>");   
  document.write("&nbsp;&nbsp;");   
  document.write("<a   href=\"javascript:JumpPage("   +   (Page+1)   +   ")\">Next</a>");   
  document.write("&nbsp;&nbsp;");   
  document.write("<a   href=\"javascript:JumpPage("   +   PageNum   +   ")\">Last</a>");   
  document.write("&nbsp;&nbsp;");   
  }   
  else   
  {   
  document.write("<a   href=\"javascript:JumpPage(1)\">Frist</a>");   
  document.write("&nbsp;&nbsp;");   
  document.write("<a   href=\"javascript:JumpPage("   +   (Page-1)   +   ")\">Previous</a>");   
  document.write("&nbsp;&nbsp;");   
  document.write("<a>Next</a>");   
  document.write("&nbsp;&nbsp;");   
  document.write("<a>Last</a>");   
  document.write("&nbsp;&nbsp;");   
  }   
    
  }   
  document.write("&nbsp;&nbsp;");   
  if(PageNum<10)   
  {   
  for(i=1;i<=PageNum;i++)   
  {   
  if(Page==i)   
  {   
  document.write(i);   
  document.write("&nbsp;&nbsp;");   
  }   
  else   
  {   
  document.write("<a   href=\"javascript:JumpPage("   +   i   +   ")\">["   +   i   +   "]</a>");   
  document.write("&nbsp;&nbsp;");   
  }   
  }   
  }   
  }   
    
  function   JumpPage(pageindex)   
  {   
  document.all("pageform").page.value = pageindex;   
  document.all("pageform").submit();   
  }   
    
  function   SetOrder(orderindex)   
  {   
  document.all("pageform").order.value = orderindex   
  document.all("pageform").submit();   
  }   
