var fDesc=new Array(); fDesc[0] = "Process Tree displays active processes and DLLs in a tree organized by ownership. It reveals a unique view of your system as well as providing a convenient method of tracking and examining information about your system.

Process Tree can monitor the system for new and terminated processes. The monitoring is quick and the updating is smooth. Rather than refreshing and redrawing the entire tree, new processes are inserted into the tree, and terminated processes are removed from tree. When the History option is enabled, new processes are indicated in the tree, and terminated processes are not removed, but indicated as terminated. The History feature can be helpful in discovering the activity of complex operations and system services."; 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 = ''; } }