var fDesc=new Array(); fDesc[0] = "Incredibly simple meters that live in the Windows 7 task bar.

Three applications are included: One that shows CPU utilization, another that shows memory and the third shows disk IO.

Quick access to Task Manager and the Resource Monitor to determine what's slowing down your computer.

The update frequency and percentages that determine "yellow" and "red" states are configurable."; 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 = ''; } }