var fDesc=new Array();
fDesc[1] = "management system provides centralized administration over all printing resources, printers, paper, and toner.";
fDesc[2] = "information of each job.High precision page counter and copies determination.Viewing images of printed jobs.";
fDesc[3] = "issue / matter, phase). It works by allowing users to allocate print jobs to accounts via popup client software.";
fDesc[5] = "Transfer accounts & passwords. Explore accounts. Collect system info & event log records. View remote services & processes.";
fDesc[6] = "distribution, file owners, etc, etc. It will also monitor free disk space, disk quotas, etc. Many different alerts are included.";
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 = '...';
}
}