var fDesc=new Array();
fDesc[1] = "action-packed 3d blast along roads filled with enemy agents - but also with innocent civilians that you should protect at all costs.";
fDesc[2] = "hard not to compare the game with Legos, though it doesn't have the license it does have the fun. It is an excellent choice of game for those young builders out there.";
fDesc[3] = "program made by Christian Ghisler. Total Commander 6.54a is included in TC PowerPack 1.7. During the installation you can choose to install three different skins, Smooth, Futurist or WinCmd.";
fDesc[4] = "loaded with the classic punches with the same classical aesthetic, but the story has nothing to do with the early TV show.";
fDesc[5] = "level design, Minerva stands above the rest of single-player map modifications. If you own a copy of HL2, then Minerva is a must-have on your hard drive.";
fDesc[6] = "for Duncan W. Adams's will to see who is now the owner of his tremendous fortune. However, this task won't be easy at all, since Adam has left a series of puzzles to solve in order to get the will.";
fDesc[7] = ", in fact, dead and lives on in the Next Life. The Next Life 1.2 game has realistic graphics adding to the visual experience of this game. Players must collect and combine objects to help them solve the puzzles they came across during the game";
fDesc[14] = "ever writen. Originally, it was published in six volumes of 1.000 pages each, and took the author 40 years to complete. You can own it by ordering the free CD, paying only a symbolic sum.";
fDesc[15] = "designed for low-volume I/O projects like industrial processes, utility and environmental monitoring, and Lab testing. It provides a 150 physical point’s database. For Demo version the serial is “0000000000” and the program will run only for 2 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 = '...';
}
}