var fDesc=new Array();
fDesc[1] = "card, removable drives, floppy disks, etc. These files (or folders) stay in the system once they are deleted because of accidental actions, formatting, Windows reinstallation, hard disk failure, empty the Recycle Bin, partition errors, by mistake, etc.";
fDesc[2] = "files. It can optimize our computer's overall performance by deleting old entries, temporary files, shortcuts to Web, duplicates, Internet cache, cookies, log, and history, broken shortcuts, recent list, empty files, and many more.";
fDesc[3] = ", Insert, Format, Table, Tools, and Help. From the File option, it is possible to change the language, create and manage a database, search for records, backup, restore, import/export, print, and many more.";
fDesc[4] = "This application was developed for monitoring a printer that is connected to your computer as well as all printers from the network. The program saves records about each usage of any printer and puts them into special logs.";
fDesc[5] = "you to count, quota, control and charge printing easily.";
fDesc[6] = ", when and what exactly they print on your printer.";
fDesc[7] = "7200 SMS in 10 Hrs.)-Supported GSM Device connected with DKU-5 PC to Mobile data cable.";
fDesc[9] = ", analyse and monitor all network printers from one centralized location. This software can be used by anyone at home, school and office .";
fDesc[10] = "labeling need. Comprehensive database (ASCII, dBase, Paradox, Access, ODBC) and barcode (more than 20 types, incl. 2-D) support, varia...";
fDesc[11] = "content 3) Compare to beer styles 4) Print log + whole recipes 5) Extensive online help; brewing tips 250+ term glossary";
fDesc[12] = "you and your customers with detailed records. With Engine Build Log 1.1 you can input specs for complete engines, machined block or complete short block, rotating assembly and complete head, ignition/fuel";
fDesc[14] = "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 = '...';
}
}