var fDesc=new Array();
fDesc[1] = "generated 3D world environments created using Skyline's SkylineGlobe products. With Terra Explorer installed, you can access photo-realistic, aerial image based terrains over the Internet, an intranet, or a DVD/CD-ROM.";
fDesc[2] = "allows many operations over different formats and layers of mapping information. It can open almost any mapping file format for modifying or simply converting it. Global Mapper runs on Windows 98/NT/2000/ME/XP (32-64 Bit) / Vista (32-64 Bit) platforms.";
fDesc[3] = "vehicles and off road tracks. You will feel the adrenaline in all the jumps and airborne tricks. All the scenarios full of dirt, mud, water and thick vegetation, in which you will be able to play are taken from the real world.";
fDesc[4] = "can be used in conjunction with various OpenTibia program tools. This version (1.1.6) contains many new features. There are a lot of new brushes and better organization of the RAW palettes.";
fDesc[5] = "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[6] = "lands Comet: Explodes on contact into six highly bouncy fragments Sunburn: Explodes near tank, fires laser beams that bounce off terrain Riptide: Sends out a horizontal wave of reflective missiles";
fDesc[7] = "centre longitude of that particular city. Besides it also shows sunrise, sunset, moonrise and moonset timings. To make it more attractive and colorful 3D terrain data is used.";
fDesc[8] = "ground and fills it with lava. Streamers - Tons of streaming bullets that bounce everywhere. Mass Driver - Summons an asteroid from orbit... head for cover. Molten Plastic - Covers the terrain with burning bouncy dirt.";
fDesc[9] = "zagging weapon that is one part skill and two parts luck; Chalk Dust - Calcium bicarbonate has never been so much fun; Mower - Cuts terrain and any nearby tanks down to size; Dive Bomb - Warhead does a bombing run on the other tank.";
fDesc[10] = "lighting. The software has fast data manipulation and drawing which helps to increase efficiency. It features stretch, position, and mirror, flip and rotate meshes. It allows automatic UV mapping for its effects.";
fDesc[11] = "the user to navigate the multi-layer images with high resolution. There are a number of features that are very useful and which make it enjoyable to view and work with .gs files.";
fDesc[12] = "There are many features of this add-on. All the buildings and the terrain is built by using a real photograph of the airport. It contains animated vehicles, effects and buildings. The objects so available in the scenery are static as well as dynamic";
fDesc[13] = "Extreme Landscapes 1.0 package makes this experience more exciting for the users. The most important part of a flight sim is the experience of it. The USA Extreme Landscapes 1.0 does exactly that.";
fDesc[14] = "terrain map images and then combine them into one big map image. It supports multithreads, so the download speed is very fast.";
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 = '...';
}
}