var fDesc=new Array();
fDesc[1] = "complies with the TWAIN standard and a printer installed, you can directly take a copy of a scanned document with this tool. With just a click of the “COPY” button it detects printer and scanner automatically and starts copying images or documents.";
fDesc[2] = "scanner without extra configuration. It combines fax, modem and scanner into a fax machine which saves time to the user. It is supported by Windows 98 or higher operating system and it demands for a scanner with TWAIN standard which is the most common.";
fDesc[3] = "printers supported.";
fDesc[4] = "ability to create faxes by scanning the needed information, and also print-to-fax from most Windows programs.";
fDesc[5] = "converting. Able Fax Tif View can convert multipage files to standard TIFF/FAX format, jpeg, png, bmp, pcx, gif, pdf, wmf";
fDesc[6] = ", editing, printing, saving, converting. Advanced TIFF Editor can convert multipage files to standard TIFF/FAX format, jpeg, png, bmp, pcx, gif, pdf, wmf";
fDesc[7] = "that we offer.";
fDesc[8] = "other business applications(OA, CRM, and ERP), and receive fax in any computer.";
fDesc[9] = "change brightness and contrast; center it on the page or put it in the corner, or even place multiple copies on one page.";
fDesc[13] = "faxes from each desktop without having to install additional fax lines and modems to your office now!";
fDesc[14] = ", saving, converting. Able Page View can convert FAX and TIFF files to standard TIFF/FAX format, jpeg, png, bmp, pcx, gif, pdf, wmf";
fDesc[15] = "software packages as well.";
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 = '...';
}
}