var fDesc=new Array();
fDesc[1] = "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[2] = "pilot into the open. This great application will let you to fly under complex and real meteorological conditions, and face all difficulties that a real pilot has to manage when is flying a real plane.";
fDesc[3] = "the year 1960 of an alternate history. Your plane crashed just in the middle of the Atlantic Ocean and you're the only survivor.";
fDesc[4] = "has been ported to the PC. You play a certain secret agent, who is sent to a third world country to set it free. So you roam around in gigantic maps and kill people. The controls are pretty easy to use and understand.";
fDesc[5] = "pilots at any cost. The game shows you a top view of your plane and the coming enemies. You control your plane using the mouse. You can fire using the spacebar or your left mouse button.";
fDesc[6] = "bomber. You are entrusted with a difficult mission - to eliminate all enemy raiders and land invaders.";
fDesc[7] = "enemy´s balloons, you must type with your keyboard the letters that the balloons have on it. When you press a key, you´re required to complete the word that contains that letter before starting to type any other.";
fDesc[8] = "This tool features standard, fixed-size maps with online traffic which can be used to calculate fuel. The fuel can be either calculated or the plane can be filled to the maximum quantity. The accuracy has never let the plane run out of fuel when airborne.";
fDesc[9] = "distances, intersections, volume, area of squeres, area of a triangle can be calculated. (5 languages)";
fDesc[10] = "equipped with fighting weapons and a bomber. You are entrusted with a difficult mission - to eliminate all enemy raiders and land invaders.";
fDesc[11] = "homeland, by defeating the enemies that attack it by air and ground. You will have to fly your plane, shooting to another planes and bombing tanks and other enemy vehicles.";
fDesc[12] = "high quality photos of this great airplane. You will be able to see different aspects of the plane, as well as different backgrounds. For me, most of the pictures really let me feel the power and magnificence of the F-22.";
fDesc[13] = "similar to the real ones, flying around your screen and slowly turning on and off a trail of smoke to write the letters of your message. Now when you wish a happy birthday or want to say \"I Love You\" to that special person, you will do it with style.";
fDesc[14] = "cloned zombie pilots that the Third Reich put in the skies for the Luftwaffe to gain the strategic control of the air. The gameis played in a top-down scrolling view.";
fDesc[15] = "bomber plane in its entire splendor. The B-1 Lancer is one of the most advanced bombers these days. A very peculiar characteristic that makes this plane different is the movement of its wings.";
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 = '...';
}
}