function getRequestObject()  
{  
     // globale Instanz von XMLHttpRequest  
     var xmlHttp = false;  
  
     // XMLHttpRequest-Instanz erstellen  
     // ... für Internet Explorer  
     try {  
         xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");  
     } catch(e) {  
         try {  
             xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");  
         } catch(e) {  
             xmlHttp  = false;  
         }  
     }  
     // ... für Mozilla, Opera und Safari  
     if (!xmlHttp  && typeof XMLHttpRequest != 'undefined') {  
         xmlHttp = new XMLHttpRequest();  
     }  
     return xmlHttp;  
}

// alle 5 Sekunden neue Daten holen
loadTwitter();
setInterval("loadTwitter()",30000);

function loadTwitter()
{
var xmlHttp = getRequestObject();
 if (xmlHttp) {
     xmlHttp.open('GET', 'http://www.allnew-tv.de/inc/twitter/content.twitter.php', true);
     xmlHttp.onreadystatechange = function () {
         if (xmlHttp.readyState == 4) {
             document.getElementById("twitter_content").innerHTML = xmlHttp.responseText;
         }
     };
     xmlHttp.send(null);
 }
}
