var fDesc=new Array();
fDesc[0] = "This free time tracking tool shows the times your computer has been active during the last 3 weeks, with no previous setup required.
The software doesn't need to run in the background, because Windows OS tracks login and logoff times (working hours) by default, and the program analyses it.
PC On/Off Time is Freeware.
Your working time is displayed graphically.
doesn't require runtimes
doesn't require installation
doesn't write to the registry
doesn't modify files outside of its own directories
isn't adware";
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 = '';
}
}