var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to be reminded to take a break at regular intervals. The software will display a visual reminder or play an audio file at specified times. This application can be minimized to the system tray at the bottom right corner of the screen so that it can be constantly running out of view."; 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 = ''; } }