var fDesc=new Array();
fDesc[1] = "comes with a modest price and works well. The program works with all types of connection modes and makes your LAN faster.";
fDesc[2] = "modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[3] = "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[4] = "faster surfing the Web, playing online games, and downloading files. It also configures Internet Explorer for better stability.";
fDesc[5] = "No modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[6] = "automatically change the speed settings of your network. You can test the difference with the Netspeed Wizard to see the difference before and after application. It is possible for you to set these parameters yourself by using a setting called Fine Tune.";
fDesc[7] = "modifications to your hardware are made and all adjustments and settings are done in an easy to use interface.";
fDesc[8] = "in your hands. So you can modify any or all settings listed in Internet Tweak to control the behavior of various internet related applications and you can optimize your system and internet related applications to boost the speed of internet, so you will get best peak performance.";
fDesc[9] = "the Web, playing online games, and downloading files. It also configures Internet Explorer for better stability.";
fDesc[10] = "responsive. This program is a package of 3 utilities, a network pinger, and internet speed booster, and a Free Mem tool.";
fDesc[11] = "performances, undesirable disconnections. Also, the application includes other useful features.";
fDesc[12] = "- A free utility to keep your system healthy and responsive. This program is a package of 3 utilities, a network pinger,and Ultra Net Booster.";
fDesc[13] = ", playing online games,, downloading files. It also configures Internet Explorer for better stability";
fDesc[14] = "OptimizeXP comes with over 20 tweaks and optimizations.";
fDesc[15] = "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 = '...';
}
}