var fDesc=new Array();
fDesc[0] = "Access Monitor is a User Access Log utility designed for the Windows XP Operating Systems.
Main features:
- Records the date/time and username of users logging in/out of the computer
- Administrator can set the user access log size and also print the log
- Administrator password protection
- Resides in the system tray
- System tray icon can be hidden from basic users
- Provides a menu to immediately switch users/logoff/restart/shutdown the computer";
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 = '';
}
}