var fDesc=new Array(); fDesc[0] = "This software gives an in-depth look into what is actually running on your processors.

The dispatcher (also known as scheduler) is part of the Windows kernel executive responsible for scheduling units of executions among available processors. Units of execution can be threads that belong to a process but also involves ISRs (interrupt service routines) which execute on behalf of either a hardware or software interrupt and DPCs (deferred procedure calls) which are routines of execution scheduled by the kernel."; 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 = ''; } }