var fDesc=new Array();
fDesc[1] = "previous versions. Given the number of race days you need to win, it takes quite a long time to get to the end, thus making the game a little uninteresting. While graphics are realistic, ProStreet's audio isn't very good and this definitely makes the game not as good as expected.";
fDesc[2] = "car equipped with the most advanced weapons. Take a dangerous route destroying the enemies to finish first.";
fDesc[3] = "line, focusing on an experience of intense and exciting race.GRID focuses 100% in the race. GRID will take players to amazing racing places on three continents.";
fDesc[4] = "first.";
fDesc[5] = "racing cars. Plot: You will have to compete in long, intense and complex circuits bypassing all your rivals, and of course, you will pass through all the usual dangers of such games.";
fDesc[6] = "a big city. This exciting game is easy to play, and you will find three cool sport cars available to drive, although two of them will remain locked until you win some races.";
fDesc[7] = "from but as you win races you will be unlocking the rest of the twelve cars available. There are also fifteen race tracks with different difficulty levels.";
fDesc[8] = "pilot and you will have a lot of races to win. Plot: Before to start playing you will see the classic difficulty selection screen, which varies with the ease of the car for damage and broken.";
fDesc[9] = "bonuses will help you win and various difficulty levels will help you improve, participate in tournaments and win the grand prix.";
fDesc[10] = "including licensed cars of various types from NASCAR to Formula 1 and normal sports cars. There are also many different tracks, many different options to choose from and even the ability to make your own cars and tracks.";
fDesc[11] = "title was intended for the children over four years old. It was developed by Beenox and published by THQ. Graphics: The car animations are fairly well done, taking care of details.";
fDesc[12] = "accept races or challenges to progress the story, with the ultimate goal of competing in numerous \"Piston Cup\" races. The gameplay is based on simple controls offering the possibility of jumping off the ground and pull off a number of moves as a bonus.";
fDesc[13] = "and celebrity voice acting. Unlike the previous game, which includes races mixed with featured minigames, Cars Mater-National in just a racing game.";
fDesc[14] = "around racing Porsche sports cars, with models ranging from 1950 to 2000. something remarkable in the game is its extensive information about Porsche and its cars. Release 3.0 brings some improvements and bug fixes to the game.";
fDesc[15] = "Survive\". The game can be installed in English, French, German, Spanish or Italian. The object of the game is to win the race, destroying the other competitors´ cars.";
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 = '...';
}
}