var fDesc=new Array(); fDesc[0] = "The Partheus Logon Manager is a useful tool to set times that different PC users can access the computer. At the end of the permitted time, Logon Manager will either (forcibly) log the user off, or turn the power off.
Logon Manager is free to try (no settings can be saved and the logoff control is disabled), and a bargain at US$10 to buy.


Control logons:
- Set logon times for individual users, and quickly copy settings from one user to another
- Enable / disable accounts
- Set whether passwords needed or not, and whether the password is locked (can't be changed by the user)
- Set the logoff warning period from 5 minutes to 1 hour
- Log off the user or power off the computer at the end of the logon allowable time"; 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 = ''; } }