var fDesc=new Array();
fDesc[1] = "Autobot Campaign and the Decepticon Campaign. The Autobot campaign consists in defending Earth from the evil Decepticons; on the other hand, The Decepticon Campaign consist in annihilating the Autobots and gaining control on Earth.";
fDesc[3] = "through QUCS´ graphical user interface (GUI). To do that, you can select eeach required component from the wide library the program has.";
fDesc[4] = "conversions) and 14 discrete calculators for the more complex functions. Complete help system with individual tips for the complicated functions.";
fDesc[5] = "from the work of Guenter Hoch. I have found this program easy to install. Navigation is also easy and the menu bar features exactly the options needed for the tasks required to develop yagi antennas.";
fDesc[7] = "you enjoy this gorgeous actress in the comfort of your living or at your office. You will be able to see her wearing some very revealing clothes, including tight fitting bikinis, lingerie, and even some partial nudity.";
fDesc[10] = "meteors. Avoid the dreaded Electron Emulsifiers who are intent on stopping you from completing your task. Inventory and objects include three lives per Mission, Force Fields, Transformers and Wormholes. There are eight challenging Missions consisting of five unique grid levels that will keep you entertained for hours";
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 = '...';
}
}