var fDesc=new Array(); fDesc[0] = "XenoPIM is a Personal Information Manager (PIM) for win32 systems. It has a calendar system, a To Do List, Contacts, and Notes.

XenoPIM is Personal Information Manager for Windows system. It supports advanced calendar functions, To Do lists, notes, and contacts, as well as import/export or most popular file formats. It is written in Visual Basic .NET (Version 2.0 of the .NET Runtime). It uses local flat-file databases. It also supports Encryption/Decryption of the database through the windows cryptography API. The IDE I use is SharpDevelop so all source will be in that format. The user interface is organize by module(calendar, To Do, notes, Contacts). It is licensed under the GPL so it is free software."; 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 = ''; } }