var fDesc=new Array();
fDesc[1] = "sheet, print double-sided (duplex) and create electronic letterhead. You can print booklets, add watermarks, headers and footers. FinePrint can scale from one paper size to another. Your pages can be saved in JPEG, TIF, BMP formats.";
fDesc[2] = "experienced is required to use this program. You can use thousands of given shapes and text styles to design your own logo, if you are not satisfied with the given templates. You can also mix or modify any given template.";
fDesc[3] = "before printing it and make some improvements like add watermarks, letterheads, remove unnecessary pages, combine different print jobs into one, export to JPG, PDF or PNG and send by email.";
fDesc[4] = "over the basic manual process of purging the print documents from the printer queue. Stalled Printer Repair is still not available for Vista as a perfect version, though it works well with other Windows operating systems.";
fDesc[5] = ", virtual. Capture from LPT1: to LPT9: and redirect the jobs, even to a printer physically connected to the captured port and w/out physical LPT ports installed";
fDesc[6] = "control a remote printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[7] = "statistics including the number of printed documents and pages for each user and each shared printer.";
fDesc[8] = "information of each job.High precision page counter and copies determination.Viewing images of printed jobs.";
fDesc[9] = "printing depending on the calculated cost, paper size, print quality or volume, use of color or black ink or toner, or password.";
fDesc[10] = ", when and what exactly they print on your printer.";
fDesc[11] = "printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[12] = "server.";
fDesc[13] = "audit, print count, print control, print quota, print accounting - Print Server / Direct IP Printer / Workstation Connected Printer";
fDesc[14] = "control and auditing of printer activity. The program monitors the print tasks on the computer for which it is installed.";
fDesc[15] = ", analyse and monitor all network printers from one centralized location. This software can be used by anyone at home, school and office .";
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 = '...';
}
}