var fDesc=new Array();
fDesc[1] = "to increase the download speeds of uTorrent. It increases download speeds way up so you can grab the files you want so badly, much quicker. uTorrent Turbo Booster allows you to download applications, movies, music at a very fast pace.";
fDesc[3] = "faster due to higher speed and improved search from multiple sources and you will gain full Internet connection.";
fDesc[4] = "when using uTorrent client in BitTorrent network by optimizing bandwidth usage.";
fDesc[5] = "client uTorrent. It is easy to install and use and accurately integrated to uTorrent to provide more useful functions.";
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 = '...';
}
}