var fDesc=new Array();
fDesc[1] = "motorcycle steering skills. Amazing realistic motion, complex obstacles, jumps and all these are in full 3D!";
fDesc[2] = "effects, splendid graphics and many fantastic routes will not leave you indifferent. Are you ready for a race? Go!";
fDesc[3] = "doesn't provide that much new features but its not a bad game. If you are a racing fan, you should try the demo first, there is a chance you can love it or that you can find it a little bland.";
fDesc[4] = "the role of a motorcycle trials rider trying to complete dangerous and challenging tracks. You may fall foul of the obstacles sometimes, but it is still fun.";
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] = "cursor movement keys: left and right will turn the wheel, up will accelerate the motorcycle, down will diminish the speed.";
fDesc[7] = "graphics and many fantastic routes will not leave you indifferent. Are you ready for a race? Go!";
fDesc[8] = "race - and save data on tire temps, tire pressures, oil, water, gearing and shock/spring settings. Ideal for multi-car teams.";
fDesc[9] = "that has to compete against other motorcyclists and demonstrate his driving skills. So in this way, you will be able to win and enjoy this exciting game.";
fDesc[10] = "fiction movies where \"computers\" ruled the world. One of those famous movies, Tron, featured spectacular battles of motorcyclists. GLtron is a game where you will find a kind of recreation of those amazing battles.";
fDesc[11] = "(motorcycle, car, truck, etc.): of its fuel consumption and maintenance. If you want to know how much money you spend on gas, oil, repairs, etc., Moto assistance is the program you are looking for.";
fDesc[12] = ", but a 3D video featuring a race with 3 pilots riding on fantastic motorcycles in very realistic colorful sceneries. Each of the three pilots is wearing suitable clothes and a helmet, that match the color of his own motorcycle, that is, yellow, red, or blue.";
fDesc[13] = "by the user. A numberof popular meeting formats (e.g. British Elite Leaguematches) are included, but a scripting l...";
fDesc[15] = "motorcycle drivers out there. It will display a lot of high quality photographs of motorcycles of almost every kind available. You will be able to see Harleys, Hondas, Modified choppers, and more.";
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 = '...';
}
}