var fDesc=new Array(); fDesc[0] = "A sound way to better health

OOS, RSI, CTS... These acronyms not only hurt, but can kill your career.

Repetitive strain injury, Occupational overuse syndrome, and Carpal tunnel syndrome are all faces of the same malaise. In laymans terms, if you use something too much, you'll damage it. For those on the coal face of the IT industry, it's endemic, and can mean losing a career when typing becomes too painful to sustain...

Every 10 minutes (or whatever you set it to) the program will play a sound to remind you to have a stretch. I use a large archive of sound bites from movies and TV that I found on the web - the program picks one at random as the reminder each time to keep it interesting.

The important thing is that this is not intrusive, it does not slow me down, and it works. I resent those programs that measure how much you have moved your mouse, or used your keyboard. All that expends resources that my PC and I could better use elsewhere. SoundBreak just sleeps until it is needed."; 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 = ''; } }