var fDesc=new Array();
fDesc[1] = ", SMS-Marketing and management reports. Now with a full AJAX admin tool.";
fDesc[2] = "items. Automatically upload schedules, full invoicing and reporting, conflict checking and much more....";
fDesc[6] = "Start working with our time booking program Resource today!";
fDesc[7] = "meeting room resource";
fDesc[8] = "overloaded with unnecessary functions.";
fDesc[9] = ", check for available rooms, send e-mails to customers, make reservations and bookings and more. Free demo available";
fDesc[10] = "and set-up. Simple to use, no training required. Create bookings with ease from your web browser, ensuring your equipment is ready when you are.";
fDesc[12] = "board'. It allows staff to show what their activities are during the working day and also view other co-workers acivities.";
fDesc[14] = "reserving meetings and meeting room resource";
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 = '...';
}
}