var fDesc=new Array();
fDesc[1] = "You can configure a soldier and quickly play around in a huge amount of 2D maps. There are 7 game mode to choose from in the game. Overall, it is really recommendable for a fun time.";
fDesc[2] = "file formats. Different file format supported by Jet Audio are MP3, OGG, WMA, APE file and so on. It allows the user to play music albums and video files, manages digital media files including automatic browse options.";
fDesc[3] = "images from your full screen or from a specific area to edit them using the brush of different thickness or insert text in rich format. In both cases, it allows you to control the opacity of the marks.";
fDesc[4] = "space freighter after a major crash.";
fDesc[5] = "the feeling of flying at high speeds without any of the risks involved. It will show you a group of fighter jets speeding through the sky, almost all of the time at low altitude.";
fDesc[6] = "role jet fighter aircraft. Designed as a lightweight fighter, it evolved into a successful multi role aircraft.";
fDesc[7] = "type of navigation vehicle is powered and steered by a jet of water created by a powerful turbine.You have to complete a course as fast as you can while navigating through buoys, and taking very good care not to miss one.";
fDesc[8] = "renewed release of Strike Fighters: Project 1 and it is set in a a fictional conflict which takes place in the Middle East, the involved nations are the Kingdom of Dhimar and the Empire of Paran, and it covers the period of time between the years 1950 and 1970.";
fDesc[9] = "ducks that will not only fly and try to scape, but will also try to attack you shooting you different colors. On each stage you will have a number of ammo that will be reduced every time you shoot at them.";
fDesc[10] = "FSX or FS2004 enabling single pilot operation of a very light Business jet, or VLJ model, in 2D or 3D cockpits. The program features 3D model rich details with a full virtual cockpit or cabin and 3D pilots in the exterior model that animate.";
fDesc[11] = "that users of the Microsoft Flight Simulator FS2004 can add to their virtual flight simulator programs. The program includes six life like models of airbuses in the colors of Air India, Air France, Virgin Atlantic, Air Canada, and British Airways liveries";
fDesc[12] = ", FS2000, and FS2004 programs providing users with 6 additional virtual airbus jumbo jets. The Fly The Airbus Fleet for FSX 1.0 bundles 6 virtual jumbo jet aircraft with 14 liveries that are modeled with true to life textures and colors";
fDesc[13] = "When serious weather conditions arise, vital information relating to storm conditions will be displayed as a crawl across your computer screen and information will be sent to you from ABC13 to keep you safe in an emergency.";
fDesc[14] = "be used in the same way as you use with hard disc or floppy disc. It means that you can write, open or edit files on RW disc using any application (MS Office, PhotoShop, CorelDraw etc.). Use Jet Storage UDF if you need: to create updateable backups to move significant amounts of data between computers, which do not have fast network connection (for example between office and home computers) high read/write compatibility with UDF disks recorded by other UDF packages compatibility with new recording devices, that are not already added to supported devices list read capabilities between new and old CD devices high stability high compatibility with other UDF vendors";
fDesc[15] = "Airbus A340 passenger jet. You get two passenger jet types with your A340 500/600 add-on: the Airbus A340 500 and the A340 600. The installation of the product is simple and the document provided is descriptive.";
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 = '...';
}
}