var fDesc=new Array();
fDesc[1] = "car equipped with the most advanced weapons. Take a dangerous route destroying the enemies to finish first.";
fDesc[2] = "of all ages. This tool has a real time European City feel along with various views for the driver to ensure the 360-degree real experience with all those big trucks.";
fDesc[3] = "costings. As in previous versions, you can print your travel plans, share them online or though e-mail. You may follow them in your vehicle to make your trips easier and more comfortable.";
fDesc[4] = "landmark in the map. There is a world map, where you can zoom in. All the road and rail routes of the United States is marked in it. There is a Euro version of AutoRoute too where you will get the whole of Europe. Anyway it is not available for Asia, Africa or other Ameriacan Places.";
fDesc[5] = ", which helps to create the ultimate off road environment so that the gamer can take it online and race all challengers. The gamer can rip through the sand dunes in two new ATV models, launch off snow capped mountains with a redesigned monster truck.";
fDesc[6] = "rallying game. The Xtreme version also brings road going cars and some other off road vehicles. With over 40 tracks available, the repetitive value of the game is huge. This is a great addition to any racing fan collection.";
fDesc[7] = "you. This is a free game where you will become a fearsome motorcyclist. This program is not exactly a motorcycle racing game, because you do not compete against other motorcyclists, but against all types of cars and vehicles along of a chaotic avenue.";
fDesc[8] = "goods. I you love action and persecution, Mad Dogs on the Road will give the right option to challenge your ability and fun. This game is a free download game and a very simple game to play.";
fDesc[9] = "native gun that has never let him down.";
fDesc[10] = "and Circuit Racing. You will compete against other computer opponents, driving your car using the keyboard or the mouse, you can choose between this controls. The game allows you to customize your character and every aspect of your car.";
fDesc[11] = "that different to other pool games already seen, but this game has a particular atmosphere which makes you feel just fine. The game is pretty easy to understand and very intuitive. You can play it over the Internet.";
fDesc[12] = "have to find the objects that are listed on the screen and click on them to get points and to pass the levels. The game is played only with the mouse, so it will be easy for anyone to play it and have a nice time.";
fDesc[13] = "the world. The player can choose between 9 different off-road vehicles depending of his driving characteristics. In this game there are two game modes, arcade mode and championship mode.";
fDesc[14] = "launched in North America. This fourth release of the popular racing game introduces various new classes of gameplay: High Stakes, Getaway and Career";
fDesc[15] = "about a road trip. You’ll be embarking a tour round across the States with your car and caravan, and in every stop you’ll be playing new levels. As you progress in levels you will go unlocking new roads to explore.";
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 = '...';
}
}