var fDesc=new Array();
fDesc[1] = "you ask me. The franchise started back in the year 1993 on the Sega genesis. Since then, this game has been improving in almost every aspect possible.";
fDesc[2] = "Games, Free Games and Free Addicting Games at Factorygames\"";
fDesc[3] = "used to play them more than often. Sega Rally 2 was amazing because of the graphics, the maps, and the sounds. Now, SEGA Rally Revo is amazing because of the same things.";
fDesc[4] = "a medieval world of fantasy and role-playing game. Plot: In a kingdom that had everything you should have: peace, happiness and prosperity, the King did not have children, then they prayed to the gods to give them that blessing.";
fDesc[5] = "imagine comes to Earth and the war that takes place there. Set in the not too distant future, the story takes you to lead all kinds of units against the forces of the universe, which have been averted against the Earth.";
fDesc[6] = "combines the best ingredients of the third person shooters genre: accelerated races, destructive environments and deadly weapons. The story is based on a series of fighting games, where players can choose between eight gladiators.";
fDesc[7] = ", based in the Z80 processor, created by Microsoft in the early 80´s. This \"standard\" was nearly unknown in the United States or England, but was widely used in Europe and Latin America. blueMSX allows you to run programs created for that architecture through your PC.";
fDesc[8] = "the videogame era. Relive all games from Sega Master System, Sega Genesis, Sega Game Gear, Nintendo, Super Nintendo, Atari 2600, Gameboy, Gameboy Color, Gameboy Advance and Colecovision.";
fDesc[9] = "published by Sega. The movie was made famous for it's characters, and the game for its breathtaking graphics, which still look amazing today.";
fDesc[11] = "\"Streets of Rage\", an action and addictive game that, together with its characters, captured the attention of all those who had a Sega Mega Drive machine. Today, we can enjoy a remake of this classic game from the 80's and 90's, which besides, is totally free!";
fDesc[12] = "Master System, Sega Genesis, Sega Game Gear, Amiga, PC, Nintendo Entertainment System and the Game Boy and is based on the movie of the same name.";
fDesc[13] = "story about American history. It is an American Legend, first; then, a Walt Disney movie, and now a free video game. Isn't it great!";
fDesc[14] = "Tails! Blast through huge zones...check out cool 3D special stages...discover bonus levels.";
fDesc[15] = "through levels with incredible speed, allowing him to traverse loops and jumps with ease.";
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 = '...';
}
}