var fDesc=new Array();
fDesc[1] = "and damaged partitions, files from formatted disks and deleted emails. The recovery can be performed over hard disks, RAID systems and flash memory cards.";
fDesc[2] = "those networks that I knew about was Emule. Apparently, the developer of this one liked the name, too. Unlike Emule, aMule works in every major platform. So if you have Mac OS X or Linux you can download your illegal quota of music just fine.";
fDesc[3] = "customers, loading their cars with the products they need, getting commissions according to the load. It is a game that requires speed and skills to combine shapes and colors.";
fDesc[4] = "download capacity monthly, Broadband Download Monitor is for you. Broadband Download Monitor, as his name explain, is a free internet traffic monitor that can limit the connection bandwith";
fDesc[5] = "use of IT resources.";
fDesc[6] = "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[7] = "management system provides centralized administration over all printing resources, printers, paper, and toner.";
fDesc[8] = "you to count, quota, control and charge printing easily.";
fDesc[9] = "type for a complete print management solution.";
fDesc[10] = "to the Internet, based on the volume of data downloaded (or uploaded) from the Internet.";
fDesc[11] = "control and auditing of printer activity. The program monitors the print tasks on the computer for which it is installed.";
fDesc[12] = "distribution, file owners, etc, etc. It will also monitor free disk space, disk quotas, etc. Many different alerts are included.";
fDesc[13] = "management program.";
fDesc[14] = "activity. The program monitors the print tasks on the computer for which it is installed.";
fDesc[15] = "sends an mail alert and can lock the write access for specified users or groups.";
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 = '...';
}
}