var fDesc=new Array();
fDesc[1] = "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[2] = ", such as Mustangs, Mercedes, Fords and others 7 car brands, in the 17 most famous circuits around the world. The races will take place by day or night. You can pick your favorite track, and race with the team, car or pilot that you choose. You´re even able to choose your opponents.";
fDesc[3] = "files in order to assure you that all the files that you are checking haven't been corrupted at all. When you create an SFV file with QuickSFV, or any other application, it records the actual state of the files so that you can check those later against the newer version.";
fDesc[7] = "a pride of the German industry with its unmistakable logo. Mercedes-Benz has, over the years, introduced many technological and safety innovations that have become common in modern cars buses and trucks.";
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 = '...';
}
}