// JavaScript Document
function showNP()
{
	xmlhttp=new XMLHttpRequest();
	xmlhttp.onreadystatechange=function()
	{
		if (xmlhttp.readyState==4 && xmlhttp.status==200)
		{
//			document.getElementById('onair').style.display = 'block';
			document.getElementById("onair").innerHTML=xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","np.php?"+Math.random(),true);
	xmlhttp.send(null);
}
setInterval("showNP()", 10000);
showNP();
