var fDesc=new Array();
fDesc[1] = "control a remote printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[2] = "use of IT resources.";
fDesc[3] = "management system provides centralized administration over all printing resources, printers, paper, and toner.";
fDesc[4] = "you to count, quota, control and charge printing easily.";
fDesc[5] = "information of each job.High precision page counter and copies determination.Viewing images of printed jobs.";
fDesc[6] = "type for a complete print management solution.";
fDesc[7] = "printing depending on the calculated cost, paper size, print quality or volume, use of color or black ink or toner, or password.";
fDesc[8] = "management and monitoring at an affordable price. Make sure you don't miss Print Censor Enterprise and it won't miss a single print job in your company!";
fDesc[9] = "food recipes from the Internet? Eliminate unnecessary expenses by installing Print Censor and setting individual printing quotas.";
fDesc[10] = "server.";
fDesc[11] = "control and auditing of printer activity. The program monitors the print tasks on the computer for which it is installed.";
fDesc[12] = "audit, print count, print control, print quota, print accounting - Print Server / Direct IP Printer / Workstation Connected Printer";
fDesc[13] = "activity. The program monitors the print tasks on the computer for which it is installed.";
fDesc[14] = "management program.";
fDesc[15] = "printing activity on network print server.";
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 = '...';
}
}