var fDesc=new Array();
fDesc[1] = ", 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[2] = "Heroes of Warcraft III, three missions showing the Orcs' battles and allows playing through Battle.net™. The missions included in this demo are totally new and do not appear in the full version of the game.";
fDesc[3] = "all about: destruction. The game features a single player campaign that allows you to follow the story of Nicko, an illegal immigrant who comes to America in search of the American dream.";
fDesc[4] = "of a few different soldiers fighting for different Allied factions during World War II. Each of the game's 10 missions is split into different stages. The game's graphics are particularly great, specially the smoke effects from smoke grenades and explosions, and sound is nothing less than superb.";
fDesc[5] = "games. It is based on a futuristic sci-fi plot with 2D isometric perspective graphics, in which three races from different planets, Terra, Protoss and Zerg, are fighting for supremacy and survival.";
fDesc[6] = "Iroquois or the Germans, improving the Home City, and enjoying the first two single-player missions of the continuing tale of the Black family.";
fDesc[7] = "way from machine guns, missiles, bombs, lasers and air support. After destroying some enemies you will earn extra bonus, powerups, weapon upgrades and ranking.";
fDesc[8] = "weapons, and new soldiers. The players can work alone or with the aid of the members of the squad to complete their missions. Patch 1.2 for this version of the saga Medal of Honor includes new maps for the multiplayer mode: Market Garden and Factory.";
fDesc[9] = "expansion pack--or a supplement--to the previous game. It features a tense and exciting stealth action gameplay, a very good sense of style and some interesting, open-ended missions. The new missions are certainly diverse and are quite interesting.";
fDesc[10] = "missions that will give you the ability to manage successfully your own zoo. The tasks involve subduing, cleaning, feeding and healing skills. During the game you will be guide by the tutorial, that will make easier completing the tasks.";
fDesc[11] = "main reason why I am saying that is because the game doesn't put much emphasis on recreating the flying tactics and physics that are needed for a game to be called a flight simulator.";
fDesc[12] = "attractive and recurring theme of the Second World War. And of course, as you guess, we are the leader of one of those squads made up of a maximum of four men.";
fDesc[13] = "DemonStar. The main difference between this game and its predecessors is that there are new enemies and new weapons in it. \"Secret Missions 2\" has been developed using an enhanced version of the original DemonStar engine, with better graphics and sound effects, more new levels and a better soundtrack.";
fDesc[14] = "difference between this mission pack and the original game is that you will have to face your enemies´ new weapons now.";
fDesc[15] = "It consists in 8 new missions, and even though it is shorter, it is notoriously more difficult than Commandos: Behind Enemy Lines.";
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 = '...';
}
}