var fDesc=new Array();
fDesc[1] = "quality and premium performance. Today, Conexant offers a line of industry leading HD-Audio codecs, including marketing value-added Voice Processing Algorithms Digital Signal Processor (DSP) software, optimized for PC Motherboard integration for worldwide operation.";
fDesc[5] = "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[7] = "incoming faxes as they are received. Scan and fax also. Supports most fax modems.";
fDesc[8] = "ability to create faxes by scanning the needed information, and also print-to-fax from most Windows programs.";
fDesc[9] = "try it for FREE. If you have one fax modem and you want 1 - 1000 workstations to send/receive fax.";
fDesc[10] = "system, giving you the ability to generate a fax from any document and send to any fax machine in the world.";
fDesc[11] = "addresses worldwide over the Internet. Using the Internet saves money - up to 95% monthly for volume users.";
fDesc[12] = "Send/Receive fax from Single computer or Network. FaxMail Network for Windows 95/98/ME/NT/2000/2003/ XP/Win32s. is 32bit, and will work standalone or on a network. You can try it for FREE. If you have one fax modem and you want 1 - 1000 workstations.";
fDesc[13] = "that we offer.";
fDesc[14] = "modems worldwide. NetoDragon modem technology moves the modem, fax and telephony functions that previously performed by a DSP to PC's host processor. This approach offers end users the lowest cost with maximum flexibility through software upgrades.";
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 = '...';
}
}