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] = "first.";
fDesc[4] = "graphics and a lot of interesting routes will catch your attention to this game. Are you up for the challenge? Don't think it's so easy.";
fDesc[5] = "effects, splendid graphics and many fantastic routes will not leave you indifferent. Are you ready for a race? Go!";
fDesc[6] = "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[7] = "the settings and different alternatives for fun are excellent, you will never get bored. Choose your track and car for a single race or a championship and try to break all the speed records.";
fDesc[8] = "Prix Mode, Extreme Mode, Time Trial, Training Mode and Multiplayer * All 24 riders from the 2004 Season * Race online along with 15 more players. Buy it online for a really affordable price.";
fDesc[9] = "racing game. You are not forced to go lap after lap, boringly getting to the finish line. The fun moments it produces are rather short-lived, but all games are short to a certain degree. This game is an action-stunt simulator, if you will.";
fDesc[10] = "and 2 great Australian tracks. The tracks are beautifully modeled and the cars look good too. It is free so every racing fan should check it out.";
fDesc[11] = "The release was delayed several times because of developing issues and the end product wasn't really polished in terms of design and functionality. However, it still managed to sell 2 million copies.";
fDesc[12] = "drive, this is your game. In this game you must drive a car in a very special space, you can see how your car explodes when you go out of the road.";
fDesc[13] = "bonuses will help you win and various difficulty levels will help you improve, participate in tournaments and win the grand prix.";
fDesc[14] = "to give to the user the maximum realism as possible. If the first part took care of Mercedes, in this second part you will put yourself to the steering wheel of the vehicles of the Volkswagen brand.";
fDesc[15] = "police catch you or you will go to jail and the game will be over. Enjoy this fun game and run fast to get control of all the territory. Collect guns and items to help you in your challenge.";
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 = '...';
}
}