var fDesc=new Array();
fDesc[1] = "wasted page. This is the page with just a URL, banner ad, legal disclaimer, etc. These wasted pages occur many times a day littering homes and offices around the world and wasting money, trees, and time.";
fDesc[2] = "disclaimer before recording (ideal for use in business environment). It stores calls as standard Windows sound files.";
fDesc[4] = ", monitor and archive email, block email between selected users. Comprehensive rule system for total control";
fDesc[5] = "are trying to sabotage your base.If 5 paratroopers land, they will blow up your base.";
fDesc[7] = "(or message), file-compression, versioned directory structure, and a creation report is included.";
fDesc[9] = "capturing 98% of spam and phishing emails, whilst minimizing false positives. Also adds disclaimers, mail archiving/repo";
fDesc[11] = "system files like comctl32.dll.) Add the files to update, click Copy, restart and that's it!";
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 = '...';
}
}