var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "terrain. Volcano: Massive eruption that throws fire and debris everywhere. Pedestal: Puts the tank up on a high pedestal. Fire Storm: Multiple explosions with a sea of awesome bouncing fireballs.";
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] = "around looking for a reason to explode. Super Star: Flying star explodes into 3 pieces then orbits and fires at tank. Gamma Blaster: Magnetized gamma radiation particles fly through air and terrain.";
fDesc[6] = "disintegration ray that also cuts through terrain [new]. Sand Storm: Amazing dust cloud forms and buries an area in sand. Lemon: This weapon is a 'lemon'. Hope you don't get it!";
fDesc[7] = ", X-Ray Cannon, Bazooka, Lucky Shot, Shelter, Fire + Ice, Anvil, Flare, Super Flare, Fracture, Claymore, Phantom, Earth Mover, Flak.";
fDesc[8] = "flaming molten rubber that coats the terrain. Side Kick - Bullets fire from the sides of the playfield. Blockade - Encase enemy tank in a hollow shell. Stun Gun - Two bullets are launched, spreading out over time.";
fDesc[9] = "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[10] = "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[11] = "their intriguing adventures as they trade exotic goods and engage in real-time battles, all while building the most powerful trading caravan the world has ever seen. Embark on challenging quests and hire fiercely loyal warriors for protection.";
fDesc[12] = "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[13] = "this add-on. All the buildings and the terrain is built by using a real photograph for the airport. The objects so available in the scenery are generally dynamic or animated objects.";
fDesc[14] = "includes a beaver which caters to the requirements of every terrain. The missions included in this software would help the users to gain an insight about the aircraft.";
fDesc[15] = "altitude aerial perspectives of Reno, Nevada, and the surrounding terrain, that are a cameo of real scenery and provide a virtual flying viewing experience that is almost real.";
fDesc[16] = "default landclass. This add-on product tries to correct all the missing cities and towns and the desertification effect in the default landclass of FSX.";
fDesc[17] = "the Flight Simulator. This add-on product tries to correct all the missing cities and towns and the pervasive desertification of the landscape.";
fDesc[18] = "wavelength, antenna lengths, etc. 3D coverage map. 2D line of sight graph. Calculate path loss / various models. Predict power/range requirement changes.";
fDesc[19] = "flag, your tank, your team (if any) and your name. Then, you will decide whether you play in Race Mode or Battle mode. Tread Marks can be played through a network. You will need to set a computer to act as a host server. The others will be able to join the game in that computer.";
fDesc[20] = "and robust algorithms to create and modify terrain meshes in no time. The capabilities of TerrainCAD can be broadly classified as (1) Terrain Generation, (2) Terrain Editing, and (3) Terrain Modeling.";
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 = '...';
}
}