var fDesc=new Array();
fDesc[1] = "pre-designed history or can create your own history playing in the classical way. The game is a version of The Sims 2 optimized for laptops and lower-end desktop computers.";
fDesc[2] = "registry entries caused by software installations and un-installations that went awry! Registry First Aid can fix that!";
fDesc[3] = "Dungeons & Dragons rules. The game is set in the Forgotten Universe campaign. Aside from some technical problems, this is a game for all RPG fans.";
fDesc[4] = "temporary files. Checks registry, hard-drives, lets you manage the start-up, shred free space on hard-drives, monitor the free space on hard-drives, free RAM and more. Pre-scan settings let you specify exactly which files do you want to erase and which not.";
fDesc[5] = "is actually the opposite. Sometimes, we forget the passwords we set for our password-protected RAR files, and there is one way to do it. Since there is not a way to simply deduct the password of a RAR file directly, this application uses two methods: brute-force...";
fDesc[6] = "Vista Services Optimizer is a freeware tool, which weighs 2.68 megabytes, and you can download from their website. To use it is necessary to provide the framework. NET 3.";
fDesc[7] = "the look and the sense of humor of the movie.This game follows the story of the movies (Dead Man´s chest and At world´s end)";
fDesc[8] = "great way of accessing files and folders on your system. The developers have done a great job of advertising the product on the website, too. There are several video demonstrations that you can view.";
fDesc[9] = "have to find the objects that are listed on the screen and click on them to get points and to pass the levels. The game is played only with the mouse, so it will be easy for anyone to play it and have a nice time.";
fDesc[10] = "launcher daily. I can't live without it. And I am glad to see applications like that for Windows. Executor is one of those applications. Executor allows you to start any application or document on your computer by typing its name.";
fDesc[11] = ", an immunologist who works in a big hospital. But you are not alone, you work along with a group of specialists in order to cure some rare illnesses. If you saw TV series like E.R. or Dr. House you might get the idea.";
fDesc[12] = "running processes and threads to find any application that is installing elements that shouldn't be allowed to run. Malware usually makes your computer slow and puts your sensitive data at risk, so it is a good idea to keep it malware free.";
fDesc[13] = "settings of any image. ReaCompressor can optimize your images for the best looks and quality for web use, emailing, storing or sharing. Support for TWAIN devices enables the user to directly acquire images from scanners and cameras.";
fDesc[14] = "video collection can become huge so that there are many duplicate files in it. It can take up massive spaces out of your hard disk depending on the content. DoubleKiller is a small program, easy to use for this job.";
fDesc[15] = "loved detectives. Everything starts in the office where Sam and Max usually work.They are expecting a call but did not find the phone. So, you will have to do a puzzle to find the phone, and in that way these two can start doing their job.";
fDesc[16] = "energetic girl finds a job advertisement as a server in a juice bar and without second thoughts decides to call. Before even noticing it she’s working at the Golden Hearts. The whole idea of the game is to serve customers as soon as possible and make the most money you can.";
fDesc[17] = "famous TV series. Plot: If you are a fan like me of this series, you would probably know that the major character is the detective Bobby Goren who is dedicated to murder cases. His job is to find out why it happened and who did it.";
fDesc[18] = "activities to do and earn a lot of money. This game has different levels, to complete each level you must complete certain tasks like fishing, helping people to move things or cleaning.";
fDesc[19] = "specifically in that order). Inside the houses you may find scared and helpless people, fire extinguishers, buckets and highly explosive propane tanks. The flames spread around and grow larger with time, so you should move quickly.";
fDesc[20] = "items. Automatically upload schedules, full invoicing and reporting, conflict checking and much 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 = '...';
}
}