var fDesc=new Array();
fDesc[1] = "monitors, through the buttons on the front panel; but if you find it difficult to use them, then this program will be helpful. The program offers predefined modes and saves custom presets.";
fDesc[2] = "you avoid overstrain by locking your computer and forcing you to take a 5-minute break every 30 minutes.";
fDesc[3] = "blind. This software has a magnifier and is a screen reader with Braille support. It is also perfect for individual users that experience deteriorating eye stray during a working day or even for school or work, to provide solutions for visually impaired groups.";
fDesc[4] = "(RSI) or other illnesses provoked by long uninterrupted work with computers, by reminding you to take breaks at regular intervals.";
fDesc[6] = ", deQuervain's, tendinitis etc.) including trauma modeling break timer, automatic mouse-clicking, macros & automatic long-term work pattern logging.";
fDesc[7] = "emotional strain. Download Poker Game Deluxe and Play for Free!";
fDesc[8] = "with tendonitis for people with wrist pain. MouseTool works with any mouse in any application.";
fDesc[9] = "account of your weariness. The program keeps track of the time you spend on the computer.";
fDesc[10] = "world-wide. Reminds you to take breaks, provides full stretch animations, posture reminders, tracks key work statistics, automatic mouse clicking, etc.";
fDesc[11] = "and/or break reminders. Highly user configurable. Logs events. Many users around the World love it.";
fDesc[12] = "a healthy and constructive manner, thus preventing computer-related injuries from developing.";
fDesc[13] = "the amount of work you do.";
fDesc[14] = "gives you a discreet reminder if it finds that you have worked for too long without taking that necessary break.";
fDesc[15] = "program prompts you to take regular breaks and to do stretching exercises to prevent computer related injuries.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}