var fDesc=new Array();
fDesc[1] = "that is set in a teamplay, you can choose to be a terrorist or a counter-terrorist. Warning: this great game is very addictive! You’ll download it in a few minutes and you’ll be playing it in less!";
fDesc[2] = ", therefore Infinity Ward released patch 1.6. The patch includes 4 new and excellent multi-player maps, along with new features for filtering and several bug fixes.";
fDesc[3] = "of elite army corpses, weapons and technollogy. Generals Zero hour can be played with 3 teams: The Chineese, the Terrorist, and, of course, the American one.";
fDesc[4] = "graphix and physics delivering a new experience for the long time Counterstrike fans. Began as an experiment, now is an experimented success. People from all around the world play it online via STEAM.";
fDesc[5] = "terrorist bases and hostile camps located in different parts of the world. Your main objective is to destroy these hostile forces and maintain your helicopter safe from attacks.";
fDesc[6] = "detachments of the terrorists. You are located in the trench and have weapons at your disposal. Fight for the world peace";
fDesc[8] = "seized by terrorist. Action takes place on your behalf.";
fDesc[9] = "helicopter equipped with laser rays, missiles, bullets, and many other special guns. Your mission will be to destroy a dangerous terrorist base, but this won't be an easy task as there are many maneuvers to make, which will require all your skills.";
fDesc[10] = "John Mullins, an anti-terrorist mercenary and weapons specialist whose mission is to stop the bio-terrorist organization and neutralize the virus threat before it is unleashed on humanity.";
fDesc[11] = "conflict that seems to come out of a news tv show rather than a book, despite having the script made by Dale Brown, an American famous writer and columnist who gives his imagination to the development of this game.";
fDesc[12] = "take the role of an enhanced elite operative that has to dismantle a terrorist organization. The action is great and the game is a very solid product. Deus Ex fans should like this game as well.";
fDesc[13] = "aim is to destroy the detachments of the terrorists. You are located in the trench and have weapons at your disposal.";
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 = '...';
}
}