var xmlHttpGH = false;
try {
 xmlHttpGH  = new ActiveXObject("Msxml2.XMLHTTP");
} 
catch(e) {
 try {
  xmlHttpGH  = new ActiveXObject("Microsoft.XMLHTTP");
 }
 catch(e) {
  xmlHttpGH  = false;
 }
}


if (!xmlHttpGH  && typeof XMLHttpRequest != 'undefined') {
 xmlHttpGH = new XMLHttpRequest();
}


loadDataGHMenu();
setInterval("loadDataGHMenu()",10000);


function loadDataGHMenu() {
 if (xmlHttpGH) {
  xmlHttpGH.open('POST', 'ajax/start/daten.php', true);
  xmlHttpGH.onreadystatechange = function () {
   if (xmlHttpGH.readyState == 4) {
    document.getElementById("start").innerHTML = xmlHttpGH.responseText;
   }
  };
  xmlHttpGH.send();
 }
}
