var fDesc=new Array(); fDesc[0] = "MKN TaskExplorer is an advanced process management tool that enables you to easily manage the tasks and applications running on your system. TaskExplorer shows detailed information about each process, including performance and memory graphs, DLLs loaded, threads, and access token. It also shows the information about the handles opened by a process and provides a function to read processes' virtual memory.

TaskExplorer displays information about each process, that includes its CPU and memory usage, the resources it is using, as well as other performance factors. Also, TaskExplorer gives detailed information about each module the process is using, its threads, their individual performance data, and possible errors.
TaskExplorer provides a function to stop and resume the execution of processes without risiking the system's stability or losing data. It can also stop, resume and terminate single threads in processes and can create a stack trace for each threads, which can be helpful for debugging purposes."; 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 = ''; } }