var fDesc=new Array();
fDesc[0] = "With this latest release of NoteWhen, we've made the best virtual sticky note program even better.
NoteWhen 3 - Note Version 3 adds many features that you, our subscribers, have been asking for. You can now:
- Send notes by e-mail, including Gmail or secure servers
- Backup notes
- Synchronize notes with notes from other machines
- Have alarms that fire when the computer is turned on even if it was off when the larm should have fired
- Set an alarm to snooze
- Set alarms for every X minutes
- Lock notes to prevent further editing
- Add a "done" status to a note
- Archive notes, taking them out of the list without deleting them
- Assign searchable tags to notes
- View scheduled events on a bigger calendar showing note titles
- Make NoteWhen portable for flash drives
- Export notes to HTML, RTF, Text, or CSV
- Set default sound for alerts
- Set default color for notes
- Set default width and height for notes
- Choose to hide the icons in the note's title bar
- Show note text as a tooltip for collapsed notes
- Print a list of notes";
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 = '';
}
}