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] = "easy to use and is quite addictive. It has got some good visual effects as well as good music and audio effects.";
fDesc[4] = "outside a space shuttle window and marvel with the magnificent views of the Earth. You will feel just as an astronaut on a space mission flying around Earth and enjoying breathtaking views of everything that happens below.";
fDesc[5] = ", you´ll have to pilot your top-secret helicopter loaded with cool gadgets around the alien menace and eliminate all alien bugs. Some of your enemies can shoot you. From time to time a big helicopter will help you paralyzing them with a ray.";
fDesc[6] = "this game, you take on the role of military aircraft pilot. You can choose a plane, a mission to accomplish.";
fDesc[7] = ", living pumpkins and witches. This is surely not another one of those boring Halloween screensavers that only show a strange looking pumpkin standing motionless somewhere. This amazing screensaver will show you many of those dreadful characters that used to frighten us in the past.";
fDesc[8] = "aircraft flying around your area? Imagine the thrill of organizing all those airplanes down to safety while avoiding mid-air collisions and flight delays? Then the Radar Screensaver is for you!";
fDesc[9] = "that used to live during the dinosaurs era? Well, you are going to be flying on one of those magnificent birds. And you will not be alone either. This unique screensaver also includes a “helicopter mode”.";
fDesc[10] = "combination of lethal and grace. Aerosoft brings the flying experience to you with close to reality effects in this FSX. Fly the A, AM and C models with engines from General Electric and Pratt & Whitney.";
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] = "some of the classic Halloween characters. You will see witches flying and mixing their magic brews, skeletons of many kinds, bats flying around you and lots more.";
fDesc[13] = "independent states in the world. So small there is not enough space to build a proper airfield. The only airport is a helipad called as the Nice Airport but Monaco makes up for the size in its beauty.";
fDesc[14] = "shows some butterflies flying around, but perhaps they are not the main protagonists. The screensaver shows a beautiful meadow landscape and a huge setting sun as a background. Over that image there are several birds flying around besides the butterflies.";
fDesc[15] = "screen in motion. You will be able to watch as the icons randomly start moving around the screen in different patterns. They will be converted in 3D objects that can be sent moving in a straight direction or make them go straight and then turn.";
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 = '...';
}
}