var fDesc=new Array();
fDesc[1] = "standard for the future of RTS gaming once more, C&C 3 takes you back to where it all began—the Tiberium Universe. Published by Electronic Arts Inc.";
fDesc[2] = "models (including new models) and the new Winamp Remote with which we can access our audio and video files remotely, either from a URL or from any device.";
fDesc[3] = "the action: you are not going to fight the terrible Stroggs all by yourself, since you will have the support of elite squads made up of special marines who carry with them state-of-the-art technology, and with whom you will be able to interact.";
fDesc[4] = "Wars. It was Developed by Electronic Arts.This expansion is able to fill part of the gaps left in C&C 3 using, as usual, the film part of the game.";
fDesc[5] = "Kane, a convict who is on his way to death but he is suddenly saved by his former partners and current creditors, The7, and taken into the prison transportation van.";
fDesc[6] = "make a good impression after a bit. The story is rather simple. You are a sort of mafia man and are sent to prison. On one of your missions, you apparently stole some valuables that belong to the mafia and they want them back so they take your family hostage until you give them back.";
fDesc[7] = "puts you in command of Kane. After the dead of his son, Kane joins a group of elite mercenaries. When a mission goes wrong and the only survivor, Kane, takes the loot, he is sentenced to death.";
fDesc[9] = "However, the game fails to provide any factual information and it actually makes whale-killing an entertainment.";
fDesc[10] = "their orders of candies. You must produce and select groups of candies in order to complete your costumers needs. This game is a time challenge where you must move fast to complete your task and reach new levels.";
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 = '...';
}
}