var report_DELAY=500;
var report_text=new Array();
report_text['clean']='Your browser has been checked for spyware and none were found. Use the spyware removal software listed below to keep your system clean.';
report_text['NoAX']='Your browser has not been checked for spyware because ActiveX is disabled. For technical reasons, the automatic-detection feature on this web page can only work with Internet Explorer on Windows, when &quot;Active scripting&quot; and &quot;Run ActiveX controls&quot; are enabled. If you wish to run this script, you could try temporarily turning these options on in the Internet Zone or putting hotlink.us in the Trusted Zone. See the Security tab in Internet Options.';
report_text['NoIE']='Your browser has not been checked for spyware because it isn\'t Internet Explorer 5 (or later) on Windows. For technical reasons, the automatic-detection feature on this web page can only work with IE/Win, with &quot;Active scripting&quot; and &quot;Run ActiveX controls&quot; enabled. Other browsers and operating systems tend not to be so badly affected anyway.';

function report_poll() {
  if (parasite_status=='wait')
    setTimeout(report_poll, report_DELAY);
  else if (parasite_status!='dirty') {
    var d= document.all['parasite'];
    d.innerHTML= report_text[parasite_status]+'\n';
    d.style.display= 'block';
  }
}

if (window.external && navigator.platform=='Win32') report_poll();
else {
  document.writeln('<div id="parasite">');
  document.writeln(report_text['NoIE']);
  document.writeln('<\/div>');
}

