var fDesc=new Array();
fDesc[1] = "drivers require Windows XP or 2000. Please note: PC Suite includes all of the drivers and management features you need to use your phone as a modem. For easiest modem installation, Nokia recommends that you download Nokia PC Suite from the PC Suite site.";
fDesc[2] = "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] = "software problems. It helps identify the most common modem failures. This new tool replaces the Modem Helper utility and its only for Conexant Modems";
fDesc[9] = "make it work with your USB modem. This application allows you to configure your Tata Indicom USB modem on your system to set up an Internet connection.";
fDesc[10] = "steps - you can soon say Goodbye to frequent windows freezes and restarts and Hello to faster boot ups and more productivity with a faster accelerated system.";
fDesc[11] = "comes with a modest price and works well. The program works with all types of connection modes and makes your LAN faster.";
fDesc[12] = "modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[13] = "it is able speed up your dial-up, DSL, ADSL or cable modem Internet connection. Or, if you prefer, you can change the values manually and test the results.";
fDesc[14] = "faster surfing the Web, playing online games, and downloading files. It also configures Internet Explorer for better stability.";
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 = '...';
}
}