var fDesc=new Array();
fDesc[1] = "of publications and marketing materials. Unlike many other Office's applications, Publisher 2007 does not have the new Ribbon fluent user interface and it still looks pretty much the same as the previous version.";
fDesc[2] = "her business running. Your task is to make sure she does all her work and provides the farm with money. You will have a place at the market where you can put all your food for sale.";
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] = "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[5] = "powerful application is a handy and very useful tool for professionals, students, English learners, etc., and includes more than 210.000 definitions, examples and pronunciations. This program will become an essential tool for those who need look up English words.";
fDesc[6] = "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[7] = "approach. Taking a lot from Firefox and the like, XYplorer adds a tabbed interface to the everyday use of file managers. Thus, you don't have to scroll through tens of windows to find the one that you know is somewhere.";
fDesc[8] = "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[9] = "RarZilla is a single window application with no buttons whatsoever. This tool but that is freeware licensed and you can change its skin. Several skins files are available on the Phillip Winterberg’s web site";
fDesc[10] = "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[11] = "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[12] = "registry entries caused by software installations and un-installations that went awry! Registry First Aid can fix that!";
fDesc[13] = "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[14] = "by BigFish Games. You will have to find some hidden objects, some of them are very well hidden. Another thing that you will find are puzzles that you must solve to move to a next level or to have more clues.";
fDesc[15] = "day in order to succeed at business, or in sports, exams or job interviews, negotiating or dating. Be a winner in any situation!";
fDesc[16] = ", 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[17] = "like that. You need to keep tables stocked. When customers don’t buy what they’ve tried on in the dressing room, you have to pick it up and put it back in the tables. The customers who find what they want will go to the cash register to pay.";
fDesc[18] = "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[19] = "Vegas Heist, but it's OK. The story is very similar to the original, but this time you are hired to find a hidden fortune within 17 hours.";
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 = '...';
}
}