var fDesc=new Array();
fDesc[1] = "statistics including the number of printed documents and pages for each user and each shared printer.";
fDesc[2] = "management system provides centralized administration over all printing resources, printers, paper, and toner.";
fDesc[3] = "you to count, quota, control and charge printing easily.";
fDesc[4] = "type for a complete print management solution.";
fDesc[5] = "in Any Language. These reports are designed for your print cost analysis.";
fDesc[6] = "audit, print count, print control, print quota, print accounting - Print Server / Direct IP Printer / Workstation Connected Printer";
fDesc[7] = "control and auditing of printer activity. The program monitors the print tasks on the computer for which it is installed.";
fDesc[10] = "helps you optimize printing, save expenses, etc. RAW PCL 5, 6 and EMF data types are supported.";
fDesc[12] = "management program.";
fDesc[15] = "activity. The program monitors the print tasks on the computer for which it is installed.";
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 = '...';
}
}