var fDesc=new Array();
fDesc[2] = "solution for virtual classroom activities and education at distance. You can try this application for a period of 30 days. After the period finishes you can either buy a license or uninstall the application.";
fDesc[3] = "example, it can be installed on computers used by children, to track what they do and prevent them from opening programs or web pages with adult content. The program has 5 components: screenshot capture, key logger, website filter, software blocker, and P2P blocker.";
fDesc[4] = "a firewall, but besides let you specify which application can access internet you can also specify how much bandwith will consume each application or the overall bandwith.";
fDesc[6] = "problem individuals with ease. Send users a message, lock their PC and record user activities for later viewing.";
fDesc[7] = "under Windows XP Home Edition. Giving ownership to anybody on the file system objects. And more...";
fDesc[8] = "access rights per user or user group. Permission Analyzer can also give you an overview of the software installed on each workstation.";
fDesc[11] = "computers over Internet in a Windows. For more info, please visit http://www.netguarder. com/en/netwatcher.htm.";
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 = '...';
}
}