var fDesc=new Array();
fDesc[1] = "under certain conditions. You can schedule the program to allow Internet access at specified time and days of the week.";
fDesc[2] = "and damaged partitions, files from formatted disks and deleted emails. The recovery can be performed over hard disks, RAID systems and flash memory cards.";
fDesc[3] = "count, document name, Time and date of printout, and printer name to your favorite spreadsheet.";
fDesc[4] = "documents or to share your files (photos, reports, etc.) with family, friends, and colleagues. A FolderShare Library is the center of this personal P2P network. Run FolderShare on multiple personal computers (like your home and office machines) and you will have a powerful file system at your disposal. FolderShare can automatically create an identical set of files on all of your computers. Make a file at home and it will instantly be copied to your office computer. Edit a file on your laptop and your office computer will automatically update its version of the file. If you are on the road, use FolderShare to view and download files from your office computer via any web browser. Expand your P2P network by turning your FolderShare library into a group library. Create a Library with invited friends/colleagues and build a collection of files (documents, photos, etc.) that everyone in the...";
fDesc[5] = "files, Is required username and password for the access, has the possibility for prohibit the access automatically if you broke any rule.";
fDesc[6] = "control a remote printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[7] = "use of IT resources.";
fDesc[8] = "management system provides centralized administration over all printing resources, printers, paper, and toner.";
fDesc[9] = "information of each job.High precision page counter and copies determination.Viewing images of printed jobs.";
fDesc[10] = "printer. Remote Queue Manager allows you to visually preview documents in the spool.";
fDesc[12] = "administration scheme, separate upload/download speed limits, storage quotas, dynamic DNS, and compression.";
fDesc[13] = "Transfer accounts & passwords. Explore accounts. Collect system info & event log records. View remote services & processes.";
fDesc[14] = "food recipes from the Internet? Eliminate unnecessary expenses by installing Print Censor and setting individual printing quotas.";
fDesc[15] = "server.";
fDesc[16] = "control and auditing of printer activity. The program monitors the print tasks on the computer for which it is installed.";
fDesc[17] = "distribution, file owners, etc, etc. It will also monitor free disk space, disk quotas, etc. Many different alerts are included.";
fDesc[19] = "printing activity on network print server.";
fDesc[20] = "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 = '...';
}
}