var fDesc=new Array(); fDesc[0] = "A program to remind you of birthdays, bill payments, and appointments. Reminders can be periodic (eg, weekly, fortnightly, monthly, quarterly, yearly). And you can specify how many days notice to give you. Checks for reminders every time you startup your computer. Create and print monthly wall calendars containing your reminders. Tag reminders with URL, file, and email links."; 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 = ''; } }