var fDesc=new Array();
fDesc[0] = "ActiveExit™ is a system utility that can automatically log off users from their accounts after a period of inactivity.
If you are a system administrator and users of your network often forget to log off before leaving, ActiveExit can save you quite a bit of the nerve cells.
Even if the user has locked the computer, ActiveExit can log the user off after the idle period you specify, without your intervention.";
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 = '';
}
}