var fDesc=new Array();
fDesc[1] = ", bytes/sec or utilization. Works on all SNMP-capable interfaces (computers, NICs, switches, routers, etc) with adjustable poll interval.";
fDesc[2] = "front lines of the fight against phishing, to reel in Online scammers ,So you can protect your personal or financial account.";
fDesc[4] = "computer without being overly intrusive, and enables you to go back at any time to investigate past alerts.";
fDesc[5] = "interfaces. The interfaces are defined in a file which is read by MIW. The data is requested using SNMP and percentage value are calculated.";
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 = '...';
}
}