var fDesc=new Array(); fDesc[0] = "This program will help you to store names along with spouse names, birthdates, and anniversary dates and also allow you to store email addresses to send an email to those who have a birthday or anniversary.

This program will run in the Windows Taskbar and it will notify you by color-coding dates if there is a birthday or anniversary on the current date. A list of these dates for the current month is shown so that you can plan ahead to celebrate these events.

You can export/import your database to an Excel-based .csv file. A help file is provided to explain the features included with this program."; 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 = ''; } }