var fDesc=new Array();
fDesc[1] = "to troubleshoot your Smart BRO broadband connection problem if you use this Quick Fix Tool. Quick Fix Tool is specifically developed to diagnose your Smart BRO Broadband connection problems.";
fDesc[2] = "servers, workstations and devices. ActiveXperts Network Monitor supports Windows platforms, UNIX platforms, Linux platforms, and Novell platforms.";
fDesc[3] = "and performance and immediately alerts you if a server gets out of order.";
fDesc[4] = "how complex automotive systems work AND how to diagnose faults. Concentrates on engine management but others also included";
fDesc[5] = "environments that will predict up 70% of disk failures before they happen based on the S.M.A.R.T. data provided by the manu";
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 = '...';
}
}