var report_text= new Array();

report_text['clean']=
'      <p class="report">\n'+
'        There was not found any SpyWare on your computer.<BR>\n'+
'        Check for new versions on <A HREF="http://www.doxdesk.com/parasite">www.doxdesk.com</A>\n'+
'      </p>';
report_text['NoAX']=
'      <p class="report">\n'+
'        Your computer was NOT searched for SpyWare, because\n'+
'        ActiveX is disabled.\n'+
'      </p>\n'+
'      <p class="report">\n'+
'        The automatic search for SpyWare on this site only works for Internet Explorer on this site\n'+
'        only works for Internet Explorer if\n'+
'        &#8220;Active scripting&#8221; og &#8220;Run ActiveX\n'+
'        controls&#8221; er enabled.\n'+
'      </p>\n'+
'      <p class="report">\n'+
'        If you want to have your computer searched for SpyWare, you could\n'+
'        temporarely set the functions in Internet Explorers Internet Zone or add http://www.tryware.dk\n'+
'        to webplaces, that you trust under Functions - Options - Safety.\n'+
'      </p>'
report_text['NoIE']=
'      <p class="report">\n'+
'        Your computer was NOT searched for SpyWare, because it is not version\n'+
'        5 (or later).\n'+
'      </p>\n'+
'      <p class="report">\n'+
'        The automatic search for SpyWare on this site\n'+
'        only works for Internet Explorer if &#8220;Active\n'+
'        scripting&#8221; and &#8220;Run ActiveX controls&#8221; is enabled.\n'+

'      </p>';

// Check parasite_status every so often until it isn't 'wait', then print
// the results

var report_DELAY= 500;

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>');
}

document.writeln('-----------------------------------------------------------------------------------------');

