var fDesc=new Array(); fDesc[0] = "This program is useful for those who spend a lot of time working on PC.

Features:

- Adjustable lengths of work and rest periods
- Smart time control based on user idle (if keyboard and mouse are idle more than rest period length then this time counts as the rest and new working period starts when user returns to PC)
- Program can turn off monitor for rest period and automatically turn it on after
- Block keyboard and mouse for rest period (user can unblock computer by pressing Ctrl Alt Del)
- Disabling of previous Ctrl Alt Del unblock (actually this option just locks the computer every second so even if you unblock it with ctrl alt del it will be immediately locked before you can even end task in task manager – only reset will help. This option is for the most undisciplined users).
- Option to add 5 more minutes to work period if you have something urgent to finish. The program asks you once one minute before the end of the work period.
- On screen display (in adjustable colors and level of transparency) that shows remaining time until next rest
- Graphical indication in tray icon how much of work period is over already
- Lock workstation when rest period starts
- Stores setting in system registry individually for every user of PC"; 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 = ''; } }