var fDesc=new Array();
fDesc[1] = "with security abilities, display configurations, compatibility settings and else. Like others PDF creation software, it works as a virtual printer driver listed on the Printer and Faxes window of your operating system.";
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] = "display configurations, compatibility settings and else. Like others PDF creation software, it works as a virtual printer driver listed on the Printer and Faxes window of your operating system. You can access to securtity abilities upgrading to the professional edition.";
fDesc[4] = "program lets you send facsimile messages from any Windows application. The answering machine will record the incoming voice messages for you. The program can show you who´s calling on the screen.";
fDesc[5] = "phone calls from your PC to another PC and from your PC to a regular phone line, thus allowing your PC to send faxes to anywhere in the world. This is done using something called \"IP Telephony\".";
fDesc[6] = "incoming faxes as they are received. Scan and fax also. Supports most fax modems.";
fDesc[7] = "the needed information, and also print-to-fax from most Windows programs.";
fDesc[8] = "ability to create faxes by scanning the needed information, and also print-to-fax from most Windows programs.";
fDesc[9] = "incoming and outgoing fax communications quickly, efficiently, and reliably. Turn your computer into an advanced fax communications center.";
fDesc[10] = "communications quickly, efficiently, and reliably. Turn your computer into an advanced communications center.";
fDesc[11] = "not be boring so the user does not need to wait for the fax to arrive and manually take care of it, to either store it or print it. The application works with TAPI Fax modems for automatically printing and saving of incoming fax calls.";
fDesc[12] = "forwarding.";
fDesc[13] = "sending faxes through a fax modem to other fax machines or PCs with a modem fax, or to any fax machine in the world through the Internet. If you use your modem fax, it will dial the fax phone number and then it will wait for the carrier to send the information.";
fDesc[14] = "any mail. Receive incomming faxes by email. Automatically format emails using frontpages. Only one IDSN card needed for all workstations. Fax-Transport provider for Outlook. Integrated mail server. Co-operation with existing mail server. Supports English and German.";
fDesc[15] = "faxes from each desktop without having to install additional fax lines and modems to your office now!";
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 = '...';
}
}