var fDesc=new Array();
fDesc[1] = "introduced the corrupts, better known as the Zann Consortium, a faction leaded by a strange, dark and twisted character named Tyber Zann.";
fDesc[2] = "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[3] = "measurement from one into another almost instantaneously. This great software supports a lot of units of measurement and it is very easy to use.";
fDesc[4] = "of commonly encountered engineering problems. Engineers have to work over and over again with a wide range of formulas, constants and algorithms, so it’s very convenient for them a library that provides quick access to all those important information and tools.";
fDesc[5] = "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[6] = "electronic collection of engineering utilities that can be used to solve, in an efficient and fast manner, a large variety of normally encountered engineering problems.";
fDesc[7] = "WinConverter is missing a unit you need, it's easy to add custom units or categories.";
fDesc[8] = "units.";
fDesc[9] = "also contains a wealth of nuclear information on each isotope, including half life, decay mode, and daughter products.";
fDesc[12] = "AkAbak simulates electro-mechano-acoust ical networks. The simulation is carried out on the basis of lumped elements and one-dimensional waveguide components. AkAbak is especially intended for the investigation and design of loudspeaker systems. AkAbak simulates a complete system: from the voltage source through to any listening point - including all filters, networks, radiation elements and the nearby radiation environment. View the Akabak User License here... For more information you are welcome at the web-site of R&D Team Software Development.";
fDesc[14] = "the half-human half-cyborg flying machine of the title, you are faced with many levels to clear of enemies.";
fDesc[15] = "Minesweeper concept. To win, you use logic and clue markers to eliminate all tiles without blowing yourself up. This engrossing game o...";
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 = '...';
}
}