    var xmlhttp,alerted
    /*@cc_on @*/
    /*@if (@_jscript_version >= 5)
    try {
      xmlhttp=new ActiveXObject("Msxml2.XMLHTTP")
    } catch (e) {
      try {
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
      } catch (E) {
        alert("You must have Microsofts XML parsers available")
      }
    }
    @else
    alert("You must have JScript version 5 or above.")
    xmlhttp=false
    alerted=true
    @end @*/
    if (!xmlhttp && !alerted) {
      // Non ECMAScript Ed. 3 will error here (IE<5 ok), nothing I can
      // realistically do about it, blame the w3c or ECMA for not
      // having a working versioning capability in  <SCRIPT> or
      // ECMAScript.
      try {
        if (window.ActiveXObject)  xmlhttp = new ActiveXObject(Microsoft.XMLHTTP);
        else
        xmlhttp = new XMLHttpRequest();
      } catch (e) {
        alert("You need a browser which supports an XMLHttpRequest Object.")
      }
    }

    function RSchange() {
      if (xmlhttp.readyState==4) {
        if(xmlhttp.status == 200)
          document.getElementById('sls').innerHTML=xmlhttp.responseText;
      }
    }

    function go() {
      if (xmlhttp) {
        d=document
        xmlhttp.onreadystatechange=RSchange
        xmlhttp.open("GET", "ilive/slsc.html",true);
        xmlhttp.send(null)
   	    window.setTimeout("go()", 60000);
      }
    }

   

