var fDesc=new Array();
fDesc[1] = "you have to control your plane while trying to destroy the enemy. In terms of flight simulator is kind of poor, since the only factor you control is the direction. Altitude, speed and else you won’t control and the simulator won’t let you crash.";
fDesc[2] = "Sturmovik, it can be installed either as a stand-alone or as expansion pack. With 74 flyable aircrafts and tons of new objects such as aircraft carriers, this is an excellent package for simulator fans.";
fDesc[3] = "application is in the form of a game pertaining to aircraft combats. The game has a full tutorial to make the users accustomed to the options and controls of the game. Airblaster consists of as many as 4 game modes. The first game mode is 1vs1 which is related to single aircraft combat.";
fDesc[4] = "Simulator X that provides them with the opportunity to experience flying a virtual commercial airline model from their flight simulation program.";
fDesc[5] = "developer's website.There is no need to register or enter any information before downloading.It set ups quite easily and we can immediately start to imagine we are in full charge of an aircraft. Before starting the adventure, we can select the aircraft we prefer to fly from over 48 models.";
fDesc[6] = "MD-11F, to provide virtual pilots who use Microsoft Flight Simulator X 1.0 with detailed, high resolution simulations of these two aircraft to experience flying in their flight simulation programs.";
fDesc[7] = ", the capabilities of FSX, providing users with a host of new features and traffic including a new Traffic Control Center and four virtual airports. Just Flight – Traffic X 1.0 includes over 100,000 scheduled airline flights within its AI feature";
fDesc[8] = "Flight Deck Companion has provided this for the ultimate simulator experience. They have put together a complete interactive sound environment for every aircraft that is available in Microsoft Flight Simulator X and 2004. What a way to experience the effect of a simulator.";
fDesc[9] = "role jet fighter aircraft. Designed as a lightweight fighter, it evolved into a successful multi role aircraft.";
fDesc[10] = "FS2004 flight simulation programs. Seven virtual aircraft are included in the Flight Deck 5 for FSX 1.0, the F/A 18C Hornet; the F/A 18E Super Hornet; the E-2C Hawkeye; the S-3B Viking; the SH-60 Seahawk; the C-2A Greyhound, and the EA-6B Prowler.";
fDesc[11] = "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[12] = "the visual appearances of their virtual aircraft by retexturing and repainting them. This handy utility presents users of FSRepaint with an easy-to-use interface that supports loading existing aircraft from FSX and FS2004.";
fDesc[13] = "traffic. This is exactly similar to the customized radio communications used at airports. This add-on generates more than 475.000 flights per day. This includes 7.800 worldwide airports.";
fDesc[14] = "includes a beaver which caters to the requirements of every terrain. The missions included in this software would help the users to gain an insight about the aircraft.";
fDesc[15] = "aircraft flying experience using their keyboards or a joystick or even an Xbox 360 controller to enhance and simulate the reality of model aircraft flying.";
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 = '...';
}
}