var fDesc=new Array();
fDesc[1] = "control a remote printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[2] = "you to count, quota, control and charge printing easily.";
fDesc[3] = "information of each job.High precision page counter and copies determination.Viewing images of printed jobs.";
fDesc[4] = "in Any Language. These reports are designed for your print cost analysis.";
fDesc[5] = "issue / matter, phase). It works by allowing users to allocate print jobs to accounts via popup client software.";
fDesc[6] = "printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[7] = ", when and what exactly they print on your printer.";
fDesc[8] = "e-mail by specifying an e-mail address and the frequency for sending e-mails.";
fDesc[9] = "food recipes from the Internet? Eliminate unnecessary expenses by installing Print Censor and setting individual printing quotas.";
fDesc[10] = "how effectively you or your employees are using computers. Get your copy now!";
fDesc[11] = "audit, print count, print control, print quota, print accounting - Print Server / Direct IP Printer / Workstation Connected Printer";
fDesc[12] = ", analyse and monitor all network printers from one centralized location. This software can be used by anyone at home, school and office .";
fDesc[14] = "helps you optimize printing, save expenses, etc. RAW PCL 5, 6 and EMF data types are supported.";
fDesc[15] = "sent the job,job title, printing parameters and the number of pages printed for each print job, and then assigns a charge.";
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 = '...';
}
}