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[2] = ", Yahoo Messenger, AIM, and ICQ. VoIP features include free internet calls, low cost PC to phone, and phone to PC calls.";
fDesc[3] = "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[4] = "Windows Vista compatibility and 64 bit Windows compatibility as well.";
fDesc[5] = "x64, Terminal Server and Citrix, client/server architecture, centralized data storage on the fax server, all common fax modems, data access from every workplace in the network, ISDN adapters and Brooktrout/Cantata and Intel/Dialogic fax boards.";
fDesc[6] = "incoming faxes as they are received. Scan and fax also. Supports most fax modems.";
fDesc[7] = "ability to create faxes by scanning the needed information, and also print-to-fax from most Windows programs.";
fDesc[8] = "try it for FREE. If you have one fax modem and you want 1 - 1000 workstations to send/receive fax.";
fDesc[9] = "and 64 bit Windows compatibility as well.";
fDesc[10] = "serial ports in your operating system. Virtual Modem PRO uses Ethernet network/ VLAN/VPN instead of conventional telephone line.";
fDesc[11] = "Merge documents and send to multiple recipients easily through their word processing tool. Fax4Word is easy, powerful and effective.";
fDesc[13] = "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 = '...';
}
}