var fDesc=new Array();
fDesc[1] = "The tracks are well done and has beautiful graphics. However, the challenge of Trials 2 is not there and might become too easy.";
fDesc[2] = "case, three gameplay modes. The first two have been seen before, but ArcaMania mode is a mixture of the bubble formula and the break out formula. Making Phantasia 2 an innovative arcade game that all fans will enjoy.";
fDesc[3] = "uses the same formula, added with an Egyptian theme. The results are amazing, with a great presentation, sound and graphics. It basically improves everything Brickshooter has. An excellent puzzle game.";
fDesc[4] = ", then the wall comes crumbling down. The game has good amount of power-ups but the formula can be seen in several other games. It is still a solid recreation of the puzzle formula.";
fDesc[5] = ", relating with the background story. There are also a couple of bonus levels that do not involve a ball. This is a refreshing game with a very old formula.";
fDesc[6] = "eras in order to steal the Krabby Patty Formula. You have to help SpongeBob rescue his friends and stop Plankton from getting the krabby patty secret formula.";
fDesc[7] = "calculations. These formulas are mathematical indeed, but the resulting pictures are beautiful and complex. You can create your own fractals, change the colors, add layers, use masks, and even create animations using this software.";
fDesc[8] = "formula established in the previous two games. In this launch of the game, two teams of up to 32 players each battle to gain the supremacy on immense virtual battlefields, fighting one another on foot, in a vehicle, on sea, and in the air.";
fDesc[9] = "take your pick, and many other cool things. Take part in the Web-contest for top players. Great 3d graphics.";
fDesc[10] = "almost everything you can imagine in the F1 2006 season, as well as special focus in the realism of the mod. If you are an F1 fan, this mod will keep you entertained for a long time.";
fDesc[11] = "cars, helmets and sounds, the mod is very realistic. Every F1 enthusiast should have this mod installed in their rFactor, because the 2005 season cannot get better than this.";
fDesc[12] = ", but you will not be seating with the rest of the crowd. You will be getting first hand views of the cars as they speed down the track. You might be actually sitting behind the wheel, getting a real view of what a pilot sees from his position.";
fDesc[13] = "sceensaver. The graphics, animation, sound effects and music are incredible. The environment is very realistic, the visual effects are amazing, the sounds and music are awesome and it also has a fps counter and a wide variety of camera viewpoints.";
fDesc[14] = ", interactive Drag-Drop interface. Helpful tips and cursors, built-in Atom Counter, Learn Mode, Test Mode (with or without timing), and scoring.";
fDesc[15] = "children, the game has something for everyone. It features new elements to the game formula that make it even more strategically sound. An excellent puzzle game for ALL ages.";
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 = '...';
}
}