var fDesc=new Array();
fDesc[1] = "versions providing a better graphical user interface and a variety of logons to choose from. It is a freeware once downloaded provides a variety of in-built logon screens.";
fDesc[2] = "challenge!";
fDesc[3] = ", and double-click actions for each timezone. A taskbar utility for anyone traveling or doing business overseas. Auto-daylight saving shift.";
fDesc[6] = "Plankton's nefarious, evil plans! Sweep the bottom of the sea and be on the lookout as you avoid slimy tentacles and their gooey projectiles!";
fDesc[9] = "live feed - Up to three PC cam - Send e-mail notices - Schedule monitoring time - Rec";
fDesc[10] = "always watch what users are doing on the remote computer. You can also take control of a remote computer by controlling the mouse and keyboard.";
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 = '...';
}
}