var fDesc=new Array();
fDesc[1] = "meter, Applications AutoRestart, Memory Cleaner, TaskList, HotKeys, HotMouse, Mouse-Scrolling, HotCorners and more !";
fDesc[2] = "anywhere on the desktop. The text appears in a so-called \"appbar\" which is similar the the Windows Taskbar. All settings are saved between sessions.";
fDesc[3] = "Ideal for Tablet PCs or situations where a keyboard is not always available.";
fDesc[4] = "applications, stores your regularly used data, and can paste data back with a single click or two keystrokes!";
fDesc[5] = "zones. The 2.1release of Clockz now supports customizable labels foreach display and 24-hour formatting on a cl...";
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 = '...';
}
}