var fDesc=new Array();
fDesc[1] = "records total study time. The program displays the amount of time required to prepare for class each day.";
fDesc[2] = "is very intuitive and easy to use, specially designed for beginners. Setting an event in the calendar is really simple, and you can also create a reminder of that task directly from there, which you can later edit or remove from the Reminders tab.";
fDesc[3] = "from your homework, tests, degree plan, loans, scholarships, and even your social life. The skinnable interface makes it a fun tool to use.";
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 = '...';
}
}