var fDesc=new Array();
fDesc[1] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[2] = "Games. Sid Meier's Railroads! represents the return of a classic after being revised and updated in its appearance and game options. The best rail simulator awaits you in this addictive title.";
fDesc[3] = "Flight Simulator 2004 (9.1), and provides them with an accurately detailed model of a commercial airline that they can experience flying, within their flight simulation program.";
fDesc[5] = "to cover any detail on model train layout design: tracks, crossings, angles, virtual vehicle for checking clearance, signals, catenaries, etc. including all the standard scales and gauges.";
fDesc[6] = "stunning 3D. No other software makes it as easy to create your own highly detailed tracks, stations, tunnels, towns, roads, level crossings and scenery. Ideal for railway enthusiasts of all ages, the only limit is your imagination.";
fDesc[7] = "all your 3D models will be less complex and more useful when being processed in real-time visualization systems. With VizUp you can easily make the 3D models well balanced 3D and optimized with reduced number of polygons.";
fDesc[8] = "but the Tile Covers Calculation will help you to create your new room with your own ideas in a fun but productive and accurate way. Using this program you can create your room virtually with three-dimensional views of the model.";
fDesc[9] = "will be able to watch the famous \"double-helix\" shape of the molecule, formed by all the different bonds that give the molecule its shape. They will be able to make it turn and display the bonds just the way they are in real life.";
fDesc[10] = ", magazines, software boxes, and more. Its wizard-like interface will guide you through the whole creative process in just a few easy steps. The program includes 100 different templates that you can use as a basis for your designs, though you can always load your own images and add new templates.";
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 = '...';
}
}