var fDesc=new Array(); fDesc[0] = "Don't ever forget an important date again! Create a list of all your important dates - anniversaries, things to do, events, memories, etc. - and this little program will remind you whenever that date comes. When it is run, it will pop a reminder with all events that occur on the present day. You can sort all events alphabetically, and order all the dates, by clicking on the header of each column or seting the preferences. Takes very little space on your desktop, and minimizes to the tray. Can also startup automatically when windows starts, to help you remember."; 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 = ''; } }