var fDesc=new Array();
fDesc[1] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
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] = "items and some hints in case you get stuck. What makes this game different from others of the kind, is that in this one you are not only supposed to be finding items and picking them up from a scene, but you also have to put them in their correct spots in other scenes.";
fDesc[4] = "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[5] = "clear waters, blue skies and lots of sun will surround you. Then you will see two islands. The inhabitants of both are really into fighting against each other in a battle to destroy the other's palm trees.";
fDesc[6] = "ClearView is a flight simulator of aircrafts and helicopters controlled by radio control. You will be able to control these amazing flying toys by using your keyboard, any Windows game pad, and a real radio transmitter connected with a special USB cable.";
fDesc[7] = "to win the war. To do this you will have eight different planes, with different characteristics suited to different objectives, to choose from.";
fDesc[8] = "paradise you may say. In this environment there are two islands trying to destroy the other island’s palm trees and they won’t stop until doing it. You can either play alone against the computer or against another player.";
fDesc[9] = "detailed model of the ERJ 145LR airplane exterior and a virtual cabin to add to their liveries. The FeelThere PIC ERJ-145LR aircraft in the program features four models; 2D panel only, or with wing view, 2D with VC and 2D with VC and virtual cabin.";
fDesc[10] = "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[11] = "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[12] = "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.";
fDesc[13] = "you fly this magnificent airplane, but it will surely fill your mind with images of you controlling this great bird. You will be able to see 24 high quality pictures of this famous fighter in different scenarios.";
fDesc[14] = "the flight of many RC airplane models. It counts with many models and these are located into different categories like electric, F3F, Flying wings, Foamies, Sports, etc. Its GUI is simple and friendly to users. CRRCSim works on Windows 98/2000/XP platforms.";
fDesc[15] = "flying. You will be able to see 17 high quality pictures of this famous airplane in different situations. They are all black and white pictures, which in the beginning I didn't think would be so great, but after a few seconds watching it, my opinion changed radically.";
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 = '...';
}
}