var fDesc=new Array();
fDesc[1] = "The Sims 2 includes plenty of new features that enhance the gameplay even more. This new version features an enhanced neighborhood editor that lets you import custom cities from Maxis' own SimCity 4, if you have it installed.";
fDesc[2] = "that needs to eat smaller fishes to grow up; likewise, we get points, bonuses, and pass on to next levels. The game becomes more and more interesting (and difficult) as we grow bigger and get to eat our old enemies.";
fDesc[3] = "saga, in this case, you are going back to the ancient Persia. Like in the other games you will climb walls, jump, and do all kind of incredible movements.";
fDesc[4] = "expansion to Crysis. This title is a standalone game and does not need the previous game to be installed to run. Apparently, this new title is not a typical expansion, it brings a lot of changes from its predecessor and it shows the story on the other side of the Island.";
fDesc[5] = "simulation of infantry combat in the European and North African Environments during World War II. Allied Assault is the first game in the Medal of Honor saga to be launched for Windows. Patch 1.2 brings several changes and improvements.";
fDesc[6] = "first.";
fDesc[7] = "way through the game into the end. Magic Balls 3.5 combines great graphics and lighting effects to create a 3D visual effect in the balls, so your experience becomes richer.";
fDesc[8] = "It is developed and published by TikGames, LLC. In this amazing and interactive game you will find that the original rules of this popular board game have been respected.";
fDesc[9] = "fourth episode in the SimCity series and originally was released on 2003. It has a single expansion pack known as Rush Hour which adds additional features to the game. But the Deluxe Edition contains the original game and Rush Hour combined as a single product.";
fDesc[10] = "of many of the users of the original games. Why, you might ask? Well, the game tried to achieve something new by dumbing down the game; that is, to do without the elements that made it a great game franchise.";
fDesc[11] = "better way. The basic rules are the same as in the original game, but it includes great new features that make this game absolutely enjoyable and addictive";
fDesc[12] = "him that some of the ghosts that Mortimer had evicted in the past, came through a portal. There are 9 anomalies scattered through time and space, and Mortimer must do something to prevent a Time Paradox.";
fDesc[13] = "family can enjoy. Hand-crafted by an old pro, Super DX-Ball is the quintessential brick-breaking game that you've been searching for.";
fDesc[14] = "confectionary plant as inheritance. To avoid it to be pulled down, you will have to reactivate it. To do so, you must collect the details and stock materials necessary to renovate the plant.";
fDesc[15] = "developed by TimeGate Studios (instead of Monolith Productions developers of the original F.E.A.R.). Extraction Point requires the original game to be installed and played.";
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 = '...';
}
}