var fDesc=new Array();
fDesc[1] = "simulation games is back. In DIRT you will compete with vehicles like buggies of all kinds, rally cars, trucks and many others. The only thing they have in common is their ability to completely get dirty.";
fDesc[2] = "vehicles and off road tracks. You will feel the adrenaline in all the jumps and airborne tricks. All the scenarios full of dirt, mud, water and thick vegetation, in which you will be able to play are taken from the real world.";
fDesc[3] = "used to play them more than often. Sega Rally 2 was amazing because of the graphics, the maps, and the sounds. Now, SEGA Rally Revo is amazing because of the same things.";
fDesc[4] = "is also extremely well presented and plays great. The first things that you will see are the great graphics. Every car is so detailed that you couldn't tell the difference from the real thing.";
fDesc[5] = "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[6] = "the dirtiest tracks of the world. Like its predecessors, DiRT takes the user into the cockpit of the best rally cars in the world. And they can race in real world tracks. There are plenty of modes for the user to race in. There is the classic time trial, there is a one-on-one mode...";
fDesc[7] = "they travel. Quad Missile - Four small missiles release at a distance, then home in. Carpet Bomb - Difficult to miss at a distance, very powerful with line-of-sight.";
fDesc[8] = "lands Comet: Explodes on contact into six highly bouncy fragments Sunburn: Explodes near tank, fires laser beams that bounce off terrain Riptide: Sends out a horizontal wave of reflective missiles";
fDesc[9] = ", X-Ray Cannon, Bazooka, Lucky Shot, Shelter, Fire + Ice, Anvil, Flare, Super Flare, Fracture, Claymore, Phantom, Earth Mover, Flak.";
fDesc[10] = "for bonus damage. Gyro Glue: Swirling and burning glue with a large area of effect [new]. Warp Gate: Wormhole + explosive objects from the 8th dimension appear.";
fDesc[11] = "anyone who enjoys driving cars in action-packed rallies over all types of surfaces. Its graphics quality is of an incredible high level, being worthy of admiration.";
fDesc[12] = "Codemasters, who have been making great racing games one after another for more than 10 years. These games are like women to men. The first thing one notices about them is how beautiful they are, the definition of their shapes.";
fDesc[13] = "ground and fills it with lava. Streamers - Tons of streaming bullets that bounce everywhere. Mass Driver - Summons an asteroid from orbit... head for cover. Molten Plastic - Covers the terrain with burning bouncy dirt.";
fDesc[14] = "bigger entities than you and persecute smaller things. You have to eat them and grow big enough to eat the others.";
fDesc[15] = "delete dust and dirt from your images automatically. It is the quickest way to correct your images in a real-time operation mode: you will see every correction in a preview window immediately.";
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 = '...';
}
}