var xmlHttp;
function CreateXmlHttpRequest()
{
	if(window.ActiveXObject)
	{
		xmlHttp=new ActiveXObject("Microsoft.XMLHttP");
	}
	else if(window.XmlHttpRequest)
	{
		xmlHttp=new XmlHttpRequest();
	}
}
function TextTopNews(ID)
{
	CreateXmlHttpRequest();
	if(xmlHttp!=null)
	{
		var url="/TopHotNews.asp?FID=2";
		xmlHttp.open("post",url,false);
		xmlHttp.onreadystatechange=ShowtopNewErr;
		xmlHttp.setrequestheader("cache-control","no-cache"); 
		xmlHttp.setrequestheader("Content-Type","application/x-www-form-urlencoded");
		xmlHttp.send(null);
	}
}
function ShowtopNewErr()
{
	//var TList=document.getElementById("Content1");
	if(xmlHttp.readyState==4)
	{
		if(xmlHttp.status==200)	
		{
			if(xmlHttp.ResponseText!="")
			{
				var registertopnews=xmlHttp.ResponseText;
				document.write (registertopnews);
			}
		}
	}
}
TextTopNews()