var fDesc=new Array();
fDesc[1] = "such as audio, video, images, program, documents, and other files, with users all over the world. LimeWire has been recently updated and now it features a smarter colorful interface.";
fDesc[2] = "browser, or you can search files directly through the client. It´s highly recommended to start your downloads from well known sites, to avoid fakes. Since anyone can upload files in a P2P network, some people likes to pretend that a file is something that is really not.";
fDesc[3] = "Internet without restrictions or limits. The client is completely free of advertisements and has a nice, easy to use interface.";
fDesc[4] = "the Gnutella, Ares and OpenFT filesharing networks. The first time you run the program, it will guide you for configuring some basic settings, like your connection speed, your shared folder(s) and the sharing networks you wish to connect to.";
fDesc[5] = "files 6 ways. Replace text in multiple files. Index files to find a word on your hard drive in less than a second! Zip found files.";
fDesc[6] = "Based on a very clean and clear interface, this Gnutella Network client-integrated application is the best choice in the crowd of P2P clients. With the help of this application you can easily share, search and download any type of media file.";
fDesc[7] = "AdunanzA was born as a project to enhance the file sharing at Fastweb and Kadu Network. It´s a modification ot the original eMule client, with some internal tweaks to speed up the download process.";
fDesc[8] = "and get free music downloads from the entire network of users. Also offers buddy list, integrated chat, firewall support and CD burner.";
fDesc[9] = "network computers instantly, supports searching within compressed archives and duplicate files on your system.";
fDesc[10] = "or for specific file types (e.g. all MP3 files).";
fDesc[11] = "your LAN or PC. Create reports, print, export, sort, copy, move, delete, etc. Try it now!";
fDesc[12] = "Gb/hour), support of all popular document formats (txt, doc, rtf, pdf, htm, html), as well as mail client messages and databases.";
fDesc[13] = "instantly, supports searching within compressed archives and duplicate files on your system.";
fDesc[15] = "multimedia files, Microsoft Office documents and others in your local network without any tiresome actions.";
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 = '...';
}
}