var xmlhttp;

function showRSS(str)
  {
 
  document.getElementById("eurosportbox").style.display = "block";
  document.getElementById("meldungenbox").style.display = "none";
  
  document.getElementById("eurosport").style.color = "#F47920";
  document.getElementById("meldung").style.color = "#FFFFFF";
  	
  xmlhttp=GetXmlHttpObject();
  if (xmlhttp==null)
    {
    alert ("Your browser does not support XML HTTP Request");
    return;
    }
  var url="tools/ajax_rss/getrss.php";
  url=url+"?q="+str;
  url=url+"&sid="+Math.random();
  xmlhttp.onreadystatechange=stateChanged;
  xmlhttp.open("GET",url,true);
  xmlhttp.send(null);
  }
  
function showGames()
  {
 
  document.getElementById("spieltag").style.display = "block";
  document.getElementById("n_spiel").style.display = "none";  
  document.getElementById("l_spiel").style.display = "none";  
  document.getElementById("tabelle").style.display = "none";  
 	
  xmlhttp=GetXmlHttpObject();
  if (xmlhttp==null)
    {
    alert ("Your browser does not support XML HTTP Request");
    return;
    }
  var url="tools/ajax_rss/getgames.php";
  xmlhttp.onreadystatechange=stateChanged_games;
  xmlhttp.open("GET",url,true);
  xmlhttp.send(null);
  }  
  
function showTable()
  {
 
  document.getElementById("spieltag").style.display = "none";
  document.getElementById("n_spiel").style.display = "none";  
  document.getElementById("l_spiel").style.display = "none";  
  document.getElementById("tabelle").style.display = "block";  
 	
  xmlhttp=GetXmlHttpObject();
  if (xmlhttp==null)
    {
    alert ("Your browser does not support XML HTTP Request");
    return;
    }
  var url="tools/ajax_rss/gettable.php";
  xmlhttp.onreadystatechange=stateChanged_table;
  xmlhttp.open("GET",url,true);
  xmlhttp.send(null);
  }   

function stateChanged()
  {
  if (xmlhttp.readyState==4)
    {
    document.getElementById("rssOutput").innerHTML=xmlhttp.responseText;
    }
  }
  
function stateChanged_games()
  {
  if (xmlhttp.readyState==4)
    {
    document.getElementById("GamesOutput").innerHTML=xmlhttp.responseText;
    }
  }  

function stateChanged_table()
  {
  if (xmlhttp.readyState==4)
    {
    document.getElementById("TableOutput").innerHTML=xmlhttp.responseText;
    }
  } 

function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  return new XMLHttpRequest();
  }
if (window.ActiveXObject)
  {
  // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
} 