
var xmlHTTP
var forumdata
function GetXmlHttpObject()
{var xmlHttp=null;try
{xmlHttp=new XMLHttpRequest();}
catch(e)
{try
{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}
catch(e)
{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}}
return xmlHttp;}
function updateFeeds(){var forum=document.getElementById("forum_feed");if(forum){forumdata=0;updateForumFeed(forum);}}
function updateForumFeed(){if(forumdata==0){xmlHTTP=GetXmlHttpObject()
var url="?ajax=forumfeed"
xmlHTTP.onreadstatechange=updateForumFeed
xmlHTTP.open("GET",url,true)
xmlHTTP.send(null);forumdata=1}
if(xmlHTTP.readyState==4||xmlHTTP.readyState=="complete")
document.getElementById("forum_feed").innerHTML=xmlHTTP.responseText;}