//--------------------------------------------
// AJAX functions by MrCLCL
// -------------------------------------------

function makeRequest()
{
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
}

function showOnline()
{
makeRequest();

xmlhttp.onreadystatechange=function()
  {
//  document.getElementById("showOnlineDiv").innerHTML = '<br><img src="images/MrCLCL/Cici01.gif"><img src="images/MrCLCL/DoiEXiu.png" height="72" width="60"/>';
  document.getElementById("showOnlineDiv").innerHTML = '<br><center><img src="images/loading.gif"/></center><br><br>';
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("showOnlineDiv").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","blocks/_block_ajax.php?online=1",true);
xmlhttp.send();
}

function showForum()
{
makeRequest();

xmlhttp.onreadystatechange=function()
  {
//  document.getElementById("showForumDiv").innerHTML = '<br><img src="images/MrCLCL/Cici01.gif"><img src="images/MrCLCL/DoiEXiu.png" height="72" width="60"/><br><br>';
  document.getElementById("showForumDiv").innerHTML = '<br><center><img src="images/loading.gif"/></center><br><br>';
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("showForumDiv").innerHTML=xmlhttp.responseText;}
  }
xmlhttp.open("GET","blocks/_block_ajax.php?forum=1",true);
xmlhttp.send();
}

function refeshForum()
{
makeRequest();

xmlhttp.onreadystatechange=function()
  {
  document.getElementById("RefeshDiv").innerHTML = '<center><img src="images/loading1.gif"/></center>';
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("showForumDiv").innerHTML=xmlhttp.responseText;}
  }
xmlhttp.open("GET","blocks/_block_ajax.php?forum=1",true);
xmlhttp.send();
}

function moreTopics()
{
makeRequest();

xmlhttp.onreadystatechange=function()
  {
  document.getElementById("RefeshDiv").innerHTML = '<center><img src="images/loading1.gif"/></center>';
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("showForumDiv").innerHTML=xmlhttp.responseText;}
  }
xmlhttp.open("GET","blocks/_block_ajax.php?moretopics=1",true);
xmlhttp.send();
}

function ShowMainTrackerToolbar()
{
makeRequest();

xmlhttp.onreadystatechange=function()
  {
  document.getElementById("showFullToolbarDiv").innerHTML = '<br><center><img src="images/loading1.gif"/></center>';
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("showFullToolbarDiv").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","blocks/_block_ajax.php?trackerinfo=1",true);
xmlhttp.send();
}
