var fDesc=new Array(); fDesc[0] = "ProcessWatcher will report on the starting and stopping of process on the local machine. Events are logged to an Event Log, and also displayed on a form. Useful for seeing what's happening on your machine, or just to verify that certain applications are closing when they say they are.
There is also the option to make the entire window transparent, so you can place it on your desktop for background monitoring."; 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 = ''; } }