var fDesc=new Array();
fDesc[1] = "faster surfing the Web, playing online games, and downloading files. It also configures Internet Explorer for better stability.";
fDesc[2] = "'Always on Top' if you want. Change the background colour. Copy to clipboard.";
fDesc[3] = "the Web, playing online games, and downloading files. It also configures Internet Explorer for better stability.";
fDesc[4] = "responsive. This program is a package of 3 utilities, a network pinger, and internet speed booster, and a Free Mem tool.";
fDesc[5] = ", restore broken connections, calculate online time, cost and traffic, launch and close programs, synchronize clock and so on.";
fDesc[6] = "working with the dial-up Internet connection.";
fDesc[8] = "- 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[9] = "with a single mouse click, can redial and offers idle disconnect or alternately idle disconnect prevention.";
fDesc[10] = "single click connection start-up and hang-up of a connection defined by time or day of week, monitoring in a call status window of up ...";
fDesc[11] = ", playing online games,, downloading files. It also configures Internet Explorer for better stability";
fDesc[12] = "faster surfing the Web, playing online games, and downloading files. It also configures Internet Explorer for better stability.";
fDesc[13] = "and DUN 1.3. Features a quick-start guide; one-button operation for beginners; a 'Defaults' button to return or...";
fDesc[14] = "Explorer, VB and others. It allows you to send emails using the SMTP Protocol.";
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 = '...';
}
}