var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to setup one or more daily task reminders. There is a default alarm sound or the alarm sound can be changed to any sound file on the computer. The user can add new, update existing or delete reminders at any time. The repeat (sleep) interval between alarms can be chosen from a comprehensive list ranging from 5 minutes to 4 hours. There is a check box to allow the software to be loaded on Windows startup."; 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 = ''; } }