var fDesc=new Array();
fDesc[1] = "happening on your computer. It runs hidden in the background, and automatically logs all keystrokes, and can also take snapshots of the desktop.";
fDesc[3] = "even notifies you when your job is complete! Thanks to Sharp’s powerful hardware options and software utilities, your digital copier/printer can be even more productive and easy to use.";
fDesc[4] = "you to count, quota, control and charge printing easily.";
fDesc[5] = "easily find out who, when and how many pages have been printed.";
fDesc[6] = "e-mail by specifying an e-mail address and the frequency for sending e-mails.";
fDesc[7] = "audit, print count, print control, print quota, print accounting - Print Server / Direct IP Printer / Workstation Connected Printer";
fDesc[8] = "levels to quickly and easily create ICC profiles.These profiles empower the user to produce consistent and accurate color from sta...";
fDesc[9] = "on the number of the printing jobs: the number of printed pages, the file name, the user and the time when a printing job occurred.";
fDesc[10] = "control and auditing of printer activity. The program monitors the print tasks on the computer for which it is installed.";
fDesc[11] = "helps you optimize printing, save expenses, etc. RAW PCL 5, 6 and EMF data types are supported.";
fDesc[12] = "management program.";
fDesc[13] = "activity. The program monitors the print tasks on the computer for which it is installed.";
fDesc[14] = "sent the job,job title, printing parameters and the number of pages printed for each print job, and then assigns a charge.";
fDesc[15] = "and spectral data) Import color lists defined in industry standard file formats (CGATS, CXF) Switch between the Measured, Random, or Visual layouts of ECI2002 and IT8.7/4 color charts Import color lists saved in plain text format, as saved from spreadsheets or word processors Import and export spectral data scaled between zero and one or between 0 and 100% Import and export spectral data defined in a range of either 380 to 730 nm or 400 to 700 nm Import RGB data encoded in 8 bit, 15 bit, 16 bit, or scaled to 100% Measure color patches on your display and verify your display calibration (White Point, grey ramp, primaries) using a DTP94, Eye-One Pro, Eye-One Display, Spyder2, or Spyder3 Compare a patch in a file to a patch in any other file, and get the color difference value Compare two files in the same window and get detailed statistics on their differences Facilitate the proofing...";
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 = '...';
}
}