/*




*/

var report_text= new Array();

report_text['clean']=
'	<p class="copy-normal-blue"><strong>The online parasite scanner did not find any spyware installed on your computer.</strong></p>'+
'	<p>However this scan cannot detect all spyware programs, if you are experiencing a lot '+
	'of popups you may still have spyware installed on your computer.<BR>'+
'	<a href="removal.html"> Click here for removal instructions.</a></p>'+
'	<p>For more details about this online scan visit <a href="http://www.doxdesk.com/parasite/"><strong>http://www.doxdesk.com/parasite/</strong></a></p>';

report_text['NoAX']=
'      <p class="copy-normal-blue">\n'+
'        <strong><font color="#FF0000">Your browser has not been checked for parasites, because\n'+
'        ActiveX is disabled.</font></strong>\n'+
'      </p>\n'+
'      <p class="copy-normal-blue">\n'+
'        For technical reasons, the parasite scanner on this\n'+
'        web page can only work with Internet Explorer on Windows, when\n'+
'        &#8220;Active scripting&#8221; and &#8220;Run ActiveX\n'+
'        controls&#8221; are enabled.\n'+
'      </p>\n'+
'      <p class="copy-normal-blue">\n'+
'        If you wish to run this script, you could try temporarily turning\n'+
'        these options on in the Internet Zone or putting www.infowest.com\n'+
'        in the Trusted Zone. See the Security tab in Internet Options.\n'+
'      </p>'
report_text['NoIE']=
'      <p class="copy-normal-blue">\n'+
'        <strong><font color="#FF0000">Your computer has not been checked for spyware, because it is not \n'+
'        using Internet Explorer 5 (or later) on Windows.</font></strong>\n'+
'      </p>\n'+
'      <p class="copy-normal-blue">\n'+
'        For technical reasons, our online parasite scanner\n'+
'        can only work with Internet Explorer running on Microsoft Windows.\n'+
'      </p>\n'+
'      <p class="copy-normal-blue">\n'+
'        Other browsers and operating systems are usually less likely to have spyware.<BR>\n'+
'       If you are running Microsoft Windows on your computer you can still download a free spyware scan.'+
'		<a href="removal.html"> Click Here for more details.</a></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>');
}
