var fDesc=new Array(); fDesc[0] = "This program displays detailed information about all running processes (applications, DLLs, BHOs, and services). For each process, it enhances the functionality of Windows Task Manager by providing a security risk rating, a process description, and file path. The security risk rating indicates the likelihood of the process being potential spyware, malware, a Trojan, or key-logger. This process viewer also recognizes stealth processes and virtual driver software hidden from the Windows Task Manager."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }