var fDesc=new Array(); fDesc[0] = "A simple Windows reminder program to help you remember birthdays, anniversaries, etc. It's configurable to notify you any number of days in advance of an event, and the frequency of notifications is also configurable. The event info is stored in a csv (comma separated values) text file, so you can import it easily into Excel or other programs. The notifier runs in the background continuously (at a low priority so it doesn't interfere with other tasks) and alerts you of upcoming events according to the notficiation options you have set up."; 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 = ''; } }