var fDesc=new Array();
fDesc[1] = "take the user from World War I to the modern day and back to World War II. This particular game takes you to the South Pacific Ocean and helps relive the scenarios of the Japanese-American battles.";
fDesc[2] = "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[3] = "We take every necessary precaution and step to protect the integrity of our Poker Room";
fDesc[4] = "the year 1960 of an alternate history. Your plane crashed just in the middle of the Atlantic Ocean and you're the only survivor.";
fDesc[5] = "clearly more than a game about blowing ships out of the water; it's an well-achieved mixture of action and real-time strategy. In the game, the player can both command his fleet assets and assume control of any one of them at will.";
fDesc[6] = "you have to control your plane while trying to destroy the enemy. In terms of flight simulator is kind of poor, since the only factor you control is the direction. Altitude, speed and else you won’t control and the simulator won’t let you crash.";
fDesc[7] = "Sturmovik, it can be installed either as a stand-alone or as expansion pack. With 74 flyable aircrafts and tons of new objects such as aircraft carriers, this is an excellent package for simulator fans.";
fDesc[8] = "clear waters, blue skies and lots of sun will surround you. Then you will see two islands. The inhabitants of both are really into fighting against each other in a battle to destroy the other's palm trees.";
fDesc[9] = "Jima and the battle of Corregidor, but this time has all the truthfulness, since one of its publishers is the History Channel";
fDesc[10] = "World War II, but without having to deal with the simulator controls complexity. What matters in this game is your skill to stop the enemy.";
fDesc[11] = "as Jack Carver. He is hired to sail a woman somewhere in the pacific, but suddenly, his ship is attacked and he washes ashore on a tropical island. He lost the woman he was \"transporting,\" so the goal of the game then is to find her and figure out what is going on.";
fDesc[12] = "paradise you may say. In this environment there are two islands trying to destroy the other island’s palm trees and they won’t stop until doing it. You can either play alone against the computer or against another player.";
fDesc[13] = "Q'West to find her husband Jack, a fisherman that disappeared after a boating accident in the Pacific Northwest. Since no remains were ever found, she believes he is still alive. So, she will try to uncover the truth of Jack's disappearance.";
fDesc[14] = "World War II. It is a well-achieved mixture of action and real-time strategy. The Iowa Mission Pack is an update which includes several new ship models, new multiplayer map, new single-player mission and five new units.";
fDesc[15] = "a lot. You will have to be a pilot of an advanced war helicopter with a wide arsenal. Your enemies will try to eliminate you using many different weapons like tanks, bombs, submachine-guns, etc., and you will have to kill and destroy them first, or your chopper will explode quickly.";
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 = '...';
}
}