var fDesc=new Array();
fDesc[1] = "where players shall accommodate various geometric shapes which fall from above. The pieces fall toward a three-dimensional grid and in three different groups, which represent the standard SimCity construction areas: industrial, commercial and residential.";
fDesc[2] = "Many different game variations. Contains tutorial. Addictive games of combination and luck, worldwide played with cards or tile sets like Rummikub.";
fDesc[3] = "tactical wargame. The player is not inside and responsible for a single Mech; now, he has the duty to lead and command many other Mechs and vehicles to achieve any given assignment.";
fDesc[4] = "features to control the screen, music, background and many other more that increases the options to enjoy it. You need to load songs before to play this game. StepMania works on Windows 98, Windows ME, Windows 2000, Windows XP, Linux and OS X platforms.";
fDesc[5] = "materials, simulations, interactive fiction, online multiplayer environments and more. Full tutorial included.";
fDesc[7] = "market and your financial situation.";
fDesc[8] = "1-10 players that presents them with the challenge of completing 25 modern battle scenarios to win the game. The game is based on real world and hypothetical conflicts and close Combat Marines which is used in Close Combat Modern Tactics 1.0 as a USMC training simulation.";
fDesc[9] = "on platforms and collects stuff while avoiding the enemies. The game includes 22 levels of action with different scenarios and enemies to avoid. It also comes with a level editor that allows players to create their own levels.";
fDesc[10] = "and exported in multiple formats and you can also import crosswords made in other programs. Also, you can print your crosswords customizing the preferences as you wish.";
fDesc[11] = "a good number of customizable features. To advance in the game, you will need all your concentration, strategy, as well as patience to think very carefully your next move. The full version of this awesome game can be downloaded from the developer's website at no cost.";
fDesc[12] = ", registration offers over 500 extra games (2500 levels) and game editor. Sound effects, worldwide Hall of Champions.";
fDesc[13] = "entertainment. Not only the name is shocking and complete but the game itself is too. Starting from the interface with a high-tech look and the load and exciting music, everything gets along very well in this war game.";
fDesc[14] = "win. The full game has a 10 stage campaign, race mode vs AI, multiplayer and a built-in level editor.";
fDesc[17] = "weapons, endless puzzles, and brains and candles you'll need to collect. Includes a level editor and over 150 bonuses to unlock!";
fDesc[18] = "the fun to your home ! Find the 5 differences in two almost identical pictures, but dont forget the time !";
fDesc[19] = "levels full of platforms, ropes, swings, vehicles and lots of other wierd structures.";
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 = '...';
}
}