// Radio Statusanzeige
	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();
	}
	
	// aktuelle Daten laden
	loadData();
	
	// alle 5 Sekunden neue Daten holen
	setInterval("loadData()",30000);
	
	function loadData()
	{
	 if (xmlHttp) {
	xmlHttp.open('GET', '/misc/radio.php', true);
	     xmlHttp.onreadystatechange = function () {
	         if (xmlHttp.readyState == 4) {
	             document.getElementById("radio_information").innerHTML = xmlHttp.responseText;
	         }
	     };
	     xmlHttp.send(null);
	 }
	}