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] = "cleaning / deleting unnecessary files. It can also be used as a tool to monitor your network usage. Realtime Disk, Network, Memory and CPU usage graphs are available. Not much features in the program. Anyway, rating 3.";
fDesc[3] = "audio/video files as soon as a download starts. With IDA download and save video from popular video sharing sites like YouTube. Some IDA features include: Scheduler, FTP Explorer, ZIP browse before downloading. IDA integrates into all popular browsers.";
fDesc[4] = "individually and directly. The game consists of creating Sims characters and building them a life, to satisfy their aspirations, to comply their dreams, etc.";
fDesc[5] = "customized to our likes. The easy and fastest way to get TweakVI to work is to use the “Auto Optimize System” option, is not available in the free edition";
fDesc[6] = "and invalid entries, and running in perfect conditions. On the left of the Main Window, we can select several options or modes, Registry category features: Editing, Manual Cleanup, Automatic Cleanup, Search and Replace, and Optimization.";
fDesc[7] = "wonderful wallpapers and photos for your desktop, emailing, greetings, blogs and other projects. Photo Frame Show offers different photo frames with amazing graphics for your or your family's photos.";
fDesc[8] = "a large number of addresses, group Internet links into categories and is distinguished by a good set of features.";
fDesc[9] = "these games are brainy games. Brain Workout presently has verbal, numerical, spatial, memory and logic types of games. Under Verbal category you will find games of Anagrams, Spelling Test, Split Words, Word Ladders, word Search and Word Wise to enhance your English vocabulary.";
fDesc[10] = "this category, this game is pretty different from others. The game is organized into chapters, in each chapter you’ll need to solve a case in The Vanishing Files to uncover the story.";
fDesc[11] = "catalogue our files, folders and disks by adding them from anywhere within our computer, including drivers and any external or/and removable device. We are allowed to manage them, add comments, categories, sort the files by location, category, export/import, etc.";
fDesc[12] = "protagonist work on the security station. Now, with the bandits still in the museum, she has to track them down and restore the order in the facilities. Of course, she will need your help to do that.";
fDesc[13] = "how it feels, and you know that it feels really bad. Everybody has been there sometime and that’s why applications like this exist. Recover Lost Data provides you with the ability to get back those accidentally deleted files searching them from a search criterion you define.";
fDesc[14] = "a detailed list of everything one owns. The software automatically organizes each inventory entry by category, location, and owner. The user can customize the home inventory category, location, and owner look-up lists to fit user’s inventory needs.";
fDesc[15] = "to the type of software that is developed for adding new features to this popular mail client. This application is a great tool for organizing your tasks, e-mail messages, contacts and many more.";
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 = '...';
}
}