var fDesc=new Array();
fDesc[1] = "in the latest versions. The emulator is capable of running Playstation 2 games at decent frame rates and it emulates every single feature of the original PS2 console.";
fDesc[2] = "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[4] = "of a famous movie celebrity, a comic, or the singer of your favourite band, to make the perfect joke, amuse your friends, or just to have a good time while creating some bizarre pictures.";
fDesc[5] = "bounces, the bigger the bang. Funnel: Trap an enemy tank in a steep valley made of bouncy dirt. Crazy Wall: It's a wall, it's an awesome weapon, and it's a little bizarre.";
fDesc[6] = "of real-time strategy game available for the enjoyment of RTS lovers. It is characterized by its original concept of replacing traditional armies formed by men for others entirely formed by robot animals.";
fDesc[7] = "You assume the role of a female journalist in search of the truth in the bizarre adventure that is Mysteryville Deluxe. You visit different locations and interview the residents.";
fDesc[8] = "cartridges. GGPO can be added to existing games to provide network gameplay support to the old consoles´ games. The program uses a peer-to-peer topology to run a complete copy of any available game for each player, transmitting controller inputs over the network to keep these copies synchronized.";
fDesc[9] = "elements that won’t disappoint fans of the first game. Abe is back, now turned into a sort of hero, with a new and dangerous mission to fulfill, which also makes room for a bizarre sense of humor that provides some hilarious and unforgettable scenes.";
fDesc[10] = "ARP2600 V, CS80 V, MiniMOOG V and MOOG Modular V. Then, you can choose which synthesized sound you will like the keyboard to play. You can choose the type of the sound and the characteristics..";
fDesc[11] = "previous editions of this title, the bizarre and unique visuals (scenarios and characters) were designed by the French artist Pierre Gilhodes. The three world's most famous goblins, Stucco, Tchop and Purlius (the same main characters from the of the first delivery of Gobliiins) are back.";
fDesc[12] = "of rats with balloons marking the distance of your shoot. A measuring rat with a balloon which will always tell you how long exactly you threw those spears, and even a rat reporter will apear every time you set a new record!!!";
fDesc[13] = "of kubars!";
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 = '...';
}
}