var fDesc=new Array();
fDesc[1] = "game you play a New York-based wedding planner who must help the two different couples prepare everything for their big day.";
fDesc[2] = "Berlin Wall hadn't fallen? Well, we would be living in a quite different world. That is what the game is all about. The Berlin Wall didn't fall and the Soviet army kept on getting more and more powerful.";
fDesc[3] = "modified version of the game is used by the US Marines. There are so many options and features that make this game just great. If you haven't played it yet, you certainly should.";
fDesc[4] = "missions, all of them regarding food. You need to complete the 6 missions in order to help the hungry, from the moment the crisis arises to the moment the assistance is no longer needed. Given the nature of the game it's licensed as a freeware and freely distributable.";
fDesc[5] = "realistic units and gameplay. The last game like this that I saw was Commandos, which was more infantry based than this. Also, a recent game like this was World in Crisis, but I couldn't run that one.";
fDesc[7] = "time, and everyone is looking forward to opening their presents, but this will not be the case. Unfortunately, Santa Claus has fallen ill and we must do his job in the shortest time possible.";
fDesc[10] = "a top view adventure game.";
fDesc[13] = "must be taken at all times, which will go off in thirty minutes. The bridge can only take 2 persons at the same time and they all walk at different speeds.";
fDesc[15] = "far away planets to destroy the endless hordes of droids threatening mankind. You will be armed with the best available weaponry";
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 = '...';
}
}