﻿function CreateXMLHTTP(){var xmlHttp_object;try{xmlHttp_object=new ActiveXObject("Msxml2.XMLHTTP");}catch(e){try{xmlHttp_object=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){xmlHttp_object=false;}}if(!xmlHttp_object&&typeof XMLHttpRequest!='undefined'){xmlHttp_object=new XMLHttpRequest();}return xmlHttp_object;}
function callBack_getHtml()
	{
		if(xmlHttpnews.readyState==4)
			{
			var hqDiv=document.getElementById("newsdiv");
			var result=xmlHttpnews.responseText;
              hqDiv.innerHTML=result;
}}
function getINFOneww(){xmlHttpnews.open("GET","ajfxbb.aspx?lan=big&ts="+new Date().getTime(),true);xmlHttpnews.onreadystatechange=callBack_getHtml;xmlHttpnews.send(null);setTimeout("getINFOneww ()", 10000);}
var xmlHttpnews=CreateXMLHTTP();
getINFOneww();