//静态读取数据，无刷新分页"首页"
function First_page()
{
   {
	document.all.page.value = 1;
	}
getAA();
}

//静态读取数据，无刷新分页"上一页"
function up_page()
{
 if (document.all.page.value!="" && document.all.page.value!=1)
   {
	document.all.page.value = parseInt(document.all.page.value)-1;
	}
else 
   { 
    document.all.page.value = 1;
	}
getAA();
}
//静态读取数据，无刷新分页"下一页"
function down_page()
{
 if (document.all.page.value!="")
   {
	document.all.page.value = parseInt(document.all.page.value)+1;
	}
 else 
   { 
    document.all.page.value = 1;
	document.all.page.value = parseInt(document.all.page.value)+1;
	}
getAA();
}
//静态读取数据，无刷新分页"尾页"
function Last_page(page)
{
   {
	document.all.page.value = page;
	}
getAA();
}
//静态读取数据，无刷新分页"尾页"
function go_page(page)
{
   {
	document.all.page.value = page;
	}
getAA();
}

function createXMLHTTP()
{
 var ig_=null;
 if(window.ActiveXObject)
 {
  ig_=new ActiveXObject("Msxml2.XMLHTTP");
  if(!ig_)
  {
   ig_=new ActiveXObject("Microsoft.XMLHTTP")
  }
 }
 else if(window.XMLHttpRequest)
 {
  ig_=new XMLHttpRequest
 }
 return ig_
}

function AjaxData(href,doc,docHandle)
{
 var xmlhttp=createXMLHTTP();
 if(!xmlhttp) //||isSafari&&!docHandle
 {
  //(new Image).src=href
 }
 else
 {
  xmlhttp.open("POST",href,true);
  if(docHandle)
  {
   xmlhttp.onreadystatechange=function()
   {
    if(xmlhttp.readyState==4)
    {
     var _status;
     try
     {
      _status=xmlhttp.status;
     }
     catch(e)
     {
      return
     }
      
     if(_status!=200)
     {
      return;
     }
     docHandle(xmlhttp);
    }
   }
  }
  
  xmlhttp.send(doc);
 }
}// JavaScript Document