var fDesc=new Array();
fDesc[0] = "The Windows software is written in C# and allows you to configure the USB device to display a number of difference performance counters on the meters. You can monitor the following items:
- Processor utilisation (total or per-core)
- Harddrive utilisation (total or per physical drive)
- Memory utilisation
- Network utilisation (per card/device)";
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 = '';
}
}