var fDesc=new Array(); fDesc[0] = "Shows list of currently running processes (including system one). For each process DllViewer shows various technical information, including priority, number of threads, parent, complete path information, and a list of associated DLLs. Detailed information is shown for the DLL files and overallmemory usage is also displayed. You can kill any active process and copy the list of dependent DLLs to the Clipboard. DllViewer is easy to use and includes online help."; 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 = ''; } }