function createXMLHttpRequest()
{
	var xmlHttp=null;
	if(window.ActiveXObject)
	  {
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");

	  if(!xmlHttp)
		  {
		  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP")
		  }
	  }
	  else if(window.XMLHttpRequest)
		{
		  xmlHttp=new XMLHttpRequest()
		 }
	  return xmlHttp

}
  function send_request(url,div_id){
    var xmln=createXMLHttpRequest();
	 xmln.open("GET",url,true);
	 xmln.setRequestHeader("Cache-Control","no-cache"); 
	 xmln.onreadystatechange=function(){
	 document.getElementById(div_id).innerHTML="正在加载信息，请稍后。。。"
   if( xmln.readyState==4){//判断对象状态
     if( xmln.status==200){//信息已成功返回，开始处理信息
	  document.getElementById(div_id).innerHTML= xmln.responseText;
	 }
	 else{//页面不正常
	  alert("您所请求的页面不正常！");
	 }
   }
  }
	//确定发送请求方式，URL，及是否同步执行下段代码
	 xmln.send(null);
  }
function doZoom(size){
document.getElementById('zoom').style.fontSize=size+'px';
document.getElementsByTagName('table').width ="";
}



