var fDesc=new Array();
fDesc[1] = "period. The game starts with a team of US scientists who are sent to an island in the south of China to investigate a weird phenomenon but face a blockade by the North Korean government. Needless to say, that is one critical situation.";
fDesc[2] = "car equipped with the most advanced weapons. Take a dangerous route destroying the enemies to finish first.";
fDesc[3] = "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[4] = "quality and variety reach a level never seen before. Cars, computer chips and game modes come together in a way which brought together all the good stuff of racing games. TOCA has come to the city...";
fDesc[5] = "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[6] = "skills and knowledge. The farmland environments and vehicles have been simulated with such realistic attention to detail, and are so easy to navigate, that you will soon be enjoying a virtual taste of the good life.";
fDesc[7] = "Sony PlayStation 3. The game mixes action on foot and mecha (also known as meka or mechs: pilot-controlled walking vehicles) the main character is played by Korean actor Lee Byung-Hun.";
fDesc[8] = "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[9] = "tools, shapes, objects and vehicles to recreate the area of a road crash. Just choose a road template similar to the crash scene, give it a name, place some vehicles according to the crash scene and you will finish drawing in a few minutes without any skill.";
fDesc[10] = "and 1 new bike to be used in TDU. The cars range from exotic supercars to loud American muscle cars. A great pack for all car lovers out there.";
fDesc[11] = "There are many features of this add-on. All the buildings and the terrain is built by using a real photograph of the airport. It contains animated vehicles, effects and buildings. The objects so available in the scenery are static as well as dynamic";
fDesc[12] = "the information related. This information refers to costs, fuel consumption, mileage, drivers, parts, services, maintenance schedules, and else. The interface is very intuitive and neat. The functionality is rather limited but the price is very competitive.";
fDesc[13] = "even Superman would stare at. Transportation Bonanza is a free screensaver created by RateMyScreensaver.com containing 16 high quality photographs.";
fDesc[14] = "the owners to track preventive and repair maintenance on their vehicles, but also by car resellers who want to have all their cars for sale organized and with all the necessary information.";
fDesc[15] = "activities for vehicles in a car fleet. Unlike the network version, this edition is usable only in one computer station at a time and supports one user. The sections of the program are: Vehicles, Services, Parts, Personnel, Vendors, Options, Reports, and Help.";
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 = '...';
}
}