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[3] = "previous game, but with a very different major character, Belial, who is a demon and your mission will be to swallow your enemies souls. This time, the scenarios will be from the ancient Egypt, the American Civil war and other historical events.";
fDesc[5] = "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[7] = "Divided Nation is the second independent (or standalone) expansion of the American Conquest saga. The main theme of this game is the American Civil War and the independence of Texas from Mexico.";
fDesc[9] = "Considering its features, it has got a nice interface, easy to use. People who were using matlab might find this a bit confusing to use. But this software is really easy to learn and use.";
fDesc[12] = "programs. It is a set of help files or ebooks that could serve as a good textbook on Civil Engineering. I would recommend this software and the addons to someone who is studying the subjects, to get a better understanding of the matter. The ebooks are really great.";
fDesc[14] = "Civil War. You will also find a very helpful map with cities, geography and dates of that time. Each map shows you the opposing armies along with the territories controlled by each.";
fDesc[15] = "the AutoCAD \"hatch\" and \"bhatch\" commands. AHatch Pro is developed as a stand-alone program.";
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 = '...';
}
}