var fDesc=new Array();
fDesc[1] = "events in a way that you will never forget any activity or appointment. The program features a very nice and intuitive user interface, that provides different views of the horizontal and vertical timeline.";
fDesc[2] = "you basic CTI call center functionality.";
fDesc[3] = ", appointments, and activities, so you will never forget any of them. The program features an attractive and intuitive user interface, built on the features introduced in Microsoft Outlook.";
fDesc[4] = "workgroup. Meaning the calendar belongs to everyone and everyone can read and write to it.";
fDesc[7] = "users. The each user maintains his own calendar, and Workgroup manager can manage all calendars.";
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 = '...';
}
}