var fDesc=new Array(); fDesc[0] = "The goal of this software is to remind the user of events that he (or she) has previously entered. It is a kind of electronic "post-it" or reminder.
The software comprises into 2 parts :

- a part which allows to create, update, delete the events. This part of the software is called upon the user's request.
- a part which is automatically called when the computer starts (or at each connection on the user's account), which displays the current events and allows to delete them or to postpone them to next cycle, or to acknowledge them later (the event will be proposed at the next start).
This one provides the following advantages :
- management of "one shot" and cyclical events
- very large cycles choice (week, month, "first monday of month", etc...)
- possibility to associate a different picture to each event
- the user can choose to be reminded of an event even if the date is out
- acknowledged events are recorded in a file and can be displayed"; 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 = ''; } }