var fDesc=new Array();
fDesc[0] = "Do you want to know your computer's switch records? Does anyone when you are not secretly turn your computer?
This software can help you:
-shows the computer startup time, shutdown time, the logged-on user and other information;
-hours of work to draw charts;
-found that if someone secretly using your computer;
-to monitor children's excessive use of computers.";
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 = '';
}
}