var fDesc=new Array();
fDesc[1] = "software is all in one Address Book, Daily Journal, Day Planner, etc. It provides the usual day, week, month and year views for your calendar, and lets you see abbreviated or expanded views of your address book.";
fDesc[2] = "personal organizer!\" - CNET";
fDesc[4] = "securely and quickly send all of your sensitive and personal information via e-mail or chat session to your partners, customers, friends or family.";
fDesc[5] = "lists, household chore task lists, or project lists for work. Use your to do lists right on your computer or print them out and take them with you.";
fDesc[6] = "extremely streamlined and simplified. Using it you can effortlessly open your favorite folders anytime, anywhere and from any application.";
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 = '...';
}
}