var fDesc=new Array(); fDesc[0] = "Many authority's recommend a small pause (1 or 2 minutes) per hour of computer work. Reflexion is a tinny application that prompts you kindly when it is time for a pause. It runs in the windows notification area (also known as tray area). You can set the start- and stop time and the number of pauses you like. A list is dynamically updated and showing all the pause occurences. Optionaly one can play a sound (wav), mp3 or wma file to prelude the pause."; 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 = ''; } }