var fDesc=new Array();
fDesc[1] = "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[2] = "off for fun with Airport Mania! Land planes, unload, and return to the skies in 8 amusing airports. Avoid delays, keep your planes in good repair, and get to the gate on time to keep things running smoothly.";
fDesc[3] = "futuristic game is set in the twenty-sixth century, in which the player has to assume the role of the Master Chief, a cybernetically enhanced \"SPARTAN\" super-soldier.";
fDesc[4] = "Teach them survival skill as building, fishing, exploration, research and healing other people. Guide them and build your village solving 16 puzzle of different difficulty levels.";
fDesc[5] = "pretty easy to play game but it’s also very entertaining because you keep very busy at all times. You need some multitask handling skills in order to succeed in this game. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[6] = "take a course to learn how to land a plane, load it, unload it and help to take it off. You can go to the Academy and take the tutorial or take a correspondence course and obtain your diploma later.";
fDesc[7] = "ignore traffic signs or knock down poles, the target of the game is to deliver as many passengers as you can and earn a lot of money.";
fDesc[8] = "will have to collect the wagons placed on the scenery, but without crashing against them. In this amusing game, you will live a funny adventure; you'll become a driver of a little train, and depending on your driving reflexes, you will advance to the next levels.";
fDesc[9] = "have features like 100 floats/wheels/ski, 300 wheel/wheel ski etc. There are different kinds of interiors such as passengers, cargo and skydiver. A paint kit is available along with fourteen different liveries.";
fDesc[10] = "of carrying passengers in an airline environment. Xpax runs alongside FS and shows up when certain phases take place, alerting players with current events presented as audio and video.";
fDesc[11] = "Experience the real flight in a Boeing 787 capable of carrying around three hundred passengers around the world. The Boeing 787 Dreamliner for FSX 1.0 lets you satisfy your flying passion with the highly detailed graphics and different liveries included to fly the aircraft.";
fDesc[12] = "running out. But you need to be fast because you are over time. You have to get all the passengers to their destinations growing up your business by buying planes, expanding destinations, renovating your terminal and hiring employees, etcetera.";
fDesc[13] = "games, explore the island, complete quests as well as trying to get off the island.";
fDesc[14] = ", aliens, and old men. Game features many futuristic settings with obstacles like meteor showers, black holes, and monsters.";
fDesc[15] = "and cargoes between the stars, manage your employees and compete against AI opponents in this cool space game.";
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 = '...';
}
}