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] = "files with other users in the fastest way via Gnutella network. We can share all types of files, including audio, video, programs, images, documents, etc.";
fDesc[3] = "if you use the older versions can see this. It is easy to use, you just install it, search and download, support multiple searches and downloads too, the interface is elegant and you can choose what languages use because the international version has many.";
fDesc[4] = "limewire; actually it doesnt offer anything new even while its developer (pronetsharing) claims that Limewire Music enables unlimited downloads for not just music, also pictures, video, software and even text documents.";
fDesc[5] = "to use their own recipe collection in a digital cookbook. This digital storage, will allow you to save, print, email your recipes, you can include images if you feel like it, and you will have the option of color schemes. Its supports English and Spanish languages.";
fDesc[6] = "Cascade Screensaver. Download free Cascade Screensaver and enjoy it!";
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 = '...';
}
}