var fDesc=new Array();
fDesc[0] = "TimeAnalyzer automatically tracks your computer usage by recording your current foreground process in real time, and allow you identify how you spend a typical day on computer.
The program can launch on Windows startup, minimize to system tray and silently monitor process activities on your PC in background.
Its report system presents full-featured computer time distribution of a specific day and compare with average amount in the same week, month and year.
Therefore, you can easily identify and recover wasted time, and improve your working efficiency substantially.";
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 = '';
}
}