var fDesc=new Array();
fDesc[3] = "will have to create your prison from its very base to the rooftops. So, you will be able to build all the constructions needed handle a prison: you will build guard towers, hospitals and so on.";
fDesc[4] = "removes many tactical elements of the game, and makes it more action-oriented. Although the game is not bad and still fun, this may not be of the liking of R6 fans. It is still an entertaining game, and now it is at a bargain price.";
fDesc[5] = "Hacker. LockDown 2000 provides complete security and privacy whenever you go online.LockDown 2000's new and advanced features will blo...";
fDesc[8] = "access to ONLY THOSE PAGES/DOMAINS you allow. (NEW switch added for disallow )";
fDesc[9] = "computer. Enforce authorized user policies. Prevent viruses, malware, identity theft, and computer changes.";
fDesc[11] = "running Windows from being tampered. It supports creating multiple user accounts and can be easily deployed in large organizations.";
fDesc[14] = "media that connects to computer USB ports, for example, memory sticks, removable hard disks, iPods, and more. Works without agents!";
fDesc[15] = "troubleshooting. Troubleshooting Pak is composed of the Health Reporter, Log Analyzer, Status Monitor and Group Policy Spy.";
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 = '...';
}
}