var fDesc=new Array();
fDesc[1] = "first stand-alone expansion pack launched for the fifth installment of the game. This expansion should not be missed by any fan of this amazing strategy saga.";
fDesc[2] = "by Blitwise productions, it is easy and fast to play and fun and exciting. A range of 230 weapons is available with expansion packs each adding to the excitement.";
fDesc[3] = ", in around 20 missions and two game-play modes. With good graphics and sounds that complement the game-play, this game is very complete. But a price tag that high is bound to make your wallet think a bit about the game.";
fDesc[4] = ", compelling music, and game play. The game has rendering in vibrant 16-bit color along with an isometric; top-down view gives a bird’s eye view of the action. It has 3D height maps for realistic travel over terrain";
fDesc[5] = "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[6] = "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[7] = "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[8] = "trains that will run accross that layout. The user can plan the tracks situation, switches, gates, the whole layout, set buildings, industrial plants, lights, persons, cars, set the terrain characteristics, platforms, elevations, plants, reliefs, railway elements, etc.";
fDesc[9] = "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[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] = "ready for the contest called Town of the year. The game is the second release of the sequel and includes great improvements and amazing new features.";
fDesc[12] = "recreation. It is available for Windows and the Mac OS. The program has no learning curve, you could be rendering your first landscape image in as little as 15 minutes after installation.";
fDesc[13] = "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[14] = "that rains hundreds of bullets, will stop over opponents tanks. Porcupine: Projectiles cut through any defense to hit fortified opponents.";
fDesc[15] = "Classic, Twisted or Mixed Course (9 holes). You control the view of the green moving your mouse, this enables you to aim the swing. You can shoot pressing the left button of the mouse, the more you press the button, the harder the strike.";
fDesc[16] = "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[17] = "to work alongside your object modeller of choice, and when you first launch the program it asks which 3D application you're accustomed to, automatically adjusting its interface in terms of colours and shortcuts.";
fDesc[18] = "use with the house builder wizard to build your space with all the specifications you desire. You can add walls, colors, furniture, lighting, landscapes, plants, shrubs, trees, pathways, etc. It includes a lot of libraries. Also you can create animation, calculate measurements and cost estimating.";
fDesc[19] = "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[20] = "features you need in order to create any type of map for the game. Anyone can do it, and that is why there are so many user-made maps available for the game.";
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 = '...';
}
}