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] = "and more. It can be easily customized with the option of over 1500 free gadgets. Its available for XP, Vista, Mac and Linux.";
fDesc[3] = "contains a powerful search tool that lets you find and download sound files (mp3, wav, midi, etc.), Image or video (movies, trailers, jokes, graphics) on the Internet.";
fDesc[4] = "collections of all the imaginable music styles. Last.Fm opens a whole universe of new music, only by creating an account and downloading its freeware software.";
fDesc[5] = "tools to do that. Radiotracker is a tool to record audio direct from Internet radios. MP3VideoRaptor allows you to search the Internet for videos to record them. TuneBite allow you to convert between almost any music and video formats";
fDesc[6] = "artist, and play them without downloading anything. The interface of the program is pretty simple. You have to write the name you want to search for, and then press the Search button.";
fDesc[7] = "deals with many types of shortcomings, and imports and exports playlists, music, covers, and images on WMP, MP3, WMA, WMV, AVI, MPG and others.";
fDesc[9] = "common search operations from a single graphical interface. You can search for videos, music, friends, news, and more. You can search for videos on popular sharing sites like Youtube and metacafe.";
fDesc[10] = "name,file name and existing tag fields, rename file by tag or make m3u playlist. Many options, multi-language and easy to use.";
fDesc[11] = "an intranet search engine, which allows you to search for shared files and music files any where in the network.";
fDesc[13] = "audio-level monitor and tester. It supports MP3 and WAV.";
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 = '...';
}
}