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] = "transport passengers around a city, adjusted to a timetable on a planned route, obeying traffic rules, and taking care not to upset or injure your passengers.";
fDesc[3] = "environment. Plot: Your mission is simple: to complete the journey and bring your load before the time runs out.";
fDesc[4] = "searching for cargo to haul driving a fantastic truck. Your goal is to carry put deliveries, for which you are paid, and get as much money as possible to change your vehicle and buy a more comfortable and fast one to complete the rest of the tasks.";
fDesc[5] = "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[6] = "infiltrate several mafia organizations in Spain. The character played by Vince Diesel is an expert driver, so soon enough, you will be driving through the city at top speed trying to kill your targets or get from A to B faster than your competitors.";
fDesc[7] = "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[8] = "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[9] = "and you must haul cargo across the entire United States. Your goal is to make money, dominate the roads and eliminate the competition.";
fDesc[10] = "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[11] = "is just like taking the real test. In fact we’re so confident that it will help you pass your Theory Test that we offer a money back PASS GUARANTEE";
fDesc[12] = "With it you can arrange the props and jumps in any way imaginable. Then you can save and load your creations for later use. You can also record \"instant replays\" up to 15 seconds in length while you´re playing, and then playback your stunt from any angle.";
fDesc[13] = "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[14] = "find yourself driving an spectacular sport car. An important feature is that it's not only a racing game, you will notice that it's an innovating and advanced racing car simulator with tools for understanding and tuning vehicle physics.";
fDesc[15] = "Windows’ operating systems that enables users to take a virtual driving course and test in simulated European country’s cities, motorways, and country sides";
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 = '...';
}
}