var fDesc=new Array();
fDesc[1] = "they travel. Quad Missile - Four small missiles release at a distance, then home in. Carpet Bomb - Difficult to miss at a distance, very powerful with line-of-sight.";
fDesc[2] = "unique monsters in the campaign of 43 levels. Enjoy devastating armament fitted into one of the awesome spaceships!";
fDesc[3] = "Union attacks the NATO forces causing Cold War to turn into Hot War. This patch brings several enhancements including visual effects, better textures, improved physics, as well as fixing the problem with Instant Action starting without any gun ammo after the patch.";
fDesc[4] = "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[5] = "can upgrade their ships with almost 20 devices. Many weapons provide accuracy and fun. Twelve masters of destruction have to be defeated while progressing in the game's gruesome levels.";
fDesc[7] = ", enabling them to experience virtually, a Cargo Pilot’s career from simple beginnings at a small airstrip right through to working in an international airport flying massive jets.";
fDesc[11] = "planes you would like to see, as well as the sound of the props. Select a custom background to use from your favorite bmp files.";
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";
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 = '...';
}
}