// JavaScript Document
var lastplayingsong = '';
function GetXmlHttpObjectCheck() {
	var objXMLHttp = null;
	if (window.XMLHttpRequest) {
		objXMLHttp = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		objXMLHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	return objXMLHttp;
}

function checkfornewsong() {
	var psongxml = GetXmlHttpObjectCheck();
	if(psongxml == null) return;
	psongxml.open('GET', '/ostehaps.php?' + new Date().getTime(), true);
	psongxml.onreadystatechange = function() { 
	   	if (psongxml.readyState == 4) {
			var content = psongxml.responseText;
	     	if(content != '' && content != lastplayingsong ) {
				lastplayingsong = content;
				var radiodata = content.split('||', 2);
				document.getElementById('nowplaying').innerHTML = radiodata['1'];
				document.getElementById('listners').innerHTML = radiodata['0'];
			}
	   	}
	}
	psongxml.send(null);
	setTimeout('checkfornewsong()', 10000);
}

$(document).ready(function(){
	checkfornewsong();
});