var fDesc=new Array();
fDesc[1] = "search and download of media files easier. The tool supports the most popular P2P network protocols which facilitate smoother file sharing over the net.";
fDesc[3] = "easy to install and use and once you have done that you will find the files you want with far more speed than before";
fDesc[4] = "dramatically.";
fDesc[5] = "MP3 and WMA files, movies, pictures and documents - all kind of music and digital media files.";
fDesc[6] = "Kazaa, limewire, bearshare, iMesh and Ares galaxy to get more search results and faster download.";
fDesc[7] = "download process and finds the files you desire with far more power than regular searches.";
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 = '...';
}
}