var fDesc=new Array();
fDesc[0] = "- It is not only an electronic Diary for Contacts, but also it allows to you to manage Passwords,
create Notes , create Alarms and to insert image (Photo).
- Personalization of the labels of the fields and of his visualization.
- Allows the synchronize of the records with another AgendaLm in another PC.
- Alarms hour and day you were re-using, recurrence, day, month, with sound, visible in MS-DOS...
- List of Birthdays.
- Post-its in the desktop.
- Password defined by the user on startup.
- Export to email, PDF, RTF, Html, etc.
- Allows the import of the contacts of other applications (Outlook, DBase, Excel, etc.)
- Individual printings, by filter, selected, etc.
- Can be installed in a pendrive, or copy the folder from the hard disk to the pen.";
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 = '';
}
}