var fDesc=new Array();
fDesc[1] = "an important event. The tasks are divided in categories including web design, support, development, meetings, information and call.";
fDesc[2] = "management of simple activities of the office. It is ideal to management the activities of the home. Its execution is very rapid. It has portable version to take the information in a USB memory.";
fDesc[3] = "Outlook, Lotus Notes, Thunderb, Palm D., David, Groupwise,.., many filters SMS Center to easily send SMS";
fDesc[4] = "and flexible feature-rich personal information solution that will open up a whole new data storage experience for you!";
fDesc[5] = ", anniversaries, to do lists and other things. It also features email integration and allows you to replace your old email client to have everything in one place.";
fDesc[6] = "Informant 8.0 provides a calendar, contact database and task list. Pocket Informant 8.0 is completely customizable so we can choose the colours that match our windows mobile theme the best.";
fDesc[7] = "lets you plan your everyday activities and schedule easily and fast. Fully customizable, it can change your working atmosphere by modifying what you see on your screen.";
fDesc[8] = "simple to install, easy to use, highly popular downloadable Windows freeware; extra features with shareware";
fDesc[9] = "store all your notes, emails, texts, hyperlinks, etc. into a single file.";
fDesc[10] = "indispensable assistant to you in managing personal information.";
fDesc[11] = "and password protection. Keys: search,replace,case,in sert htm tables,file,link,image ,time,date, txt,htm,rtf,wri";
fDesc[12] = "structure for easy access and quick viewing. With this program you will be able to create notes, to-do lists, projects, personal contacts, documents outlines.";
fDesc[13] = "if you want to pack several files in just one file that can be later decompressed in another computer. PIM provides a high compression ratio, thanks to the PIMv2 proprietary format.";
fDesc[14] = "all your important data in one single place. The program includes a to-do-list, task scheduler,contact manager, quick notes, calendar and much more. It features a nice and intuitive user interface, which is very customizable in order to adjust it to your exact needs.";
fDesc[15] = "etc. However, PIM XP is not just a personal information manager. With PIM XP, you can keep your own blog filling it with the ideas.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}