function radioCounter()
{
var xmlHttp;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
      alert("Your browser does not support AJAX!");
      return false;
      }
    }
  }
  xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
      document.getElementById("rc").innerHTML = xmlHttp.responseText;
if (document.getElementById("rcm")) {
		document.getElementById("rcm").innerHTML = xmlHttp.responseText;
}
      setTimeout ( "radioCounter()", 30000 );
      }
    }
  xmlHttp.open("GET","radio-counter.php",true);
  xmlHttp.send(null);
  }
setTimeout ( "radioCounter()", 5000 );

