var fDesc=new Array();
fDesc[1] = "called Bitcomet as well as the number of available sources. The plug-in sits in your system tray and enables you to control everything from there.";
fDesc[2] = "downloads dramatically.";
fDesc[3] = "used to increase speed of BitComet downloads";
fDesc[4] = "Bitcomet file-sharing program. Your movies, MP3s, books and other files will be pouring in like crazy! It is FREE and 100% CLEAN!";
fDesc[5] = "BitTorrent download links.Bitcomet Speeder will accelerate download speed of torrents by optimizing Internet bandwidth usage.";
fDesc[6] = "tool is easy to setup and does not require any user intervention.";
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 = '...';
}
}