var fDesc=new Array();
fDesc[1] = "simulation of infantry combat in the European and North African Environments during World War II. Allied Assault is the first game in the Medal of Honor saga to be launched for Windows. Patch 1.2 brings several changes and improvements.";
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] = "shooters based on World War II. In this game, you will play the part of Boyd Travers, Private First Class, a paratrooper in the US 82nd Airborne Division";
fDesc[4] = "fans of word games. Including the amazing “Boggle Blast” mode, Boggle Supreme has been packed with lots of great features such as a new computer player called Betty who will teach you the game and also challenge you!";
fDesc[8] = "has a ripper that can analyze other game files. It is simple to use and very powerful. If you handle resources from different games, this is the only program you need.";
fDesc[9] = "the place and will learn how to prepare them. Hot Dish is a multitask game, just like real life cooking is. This is what makes this game really entertaining and kind of difficult to play. Keep focus and try no to loose track of the several tasks going on.";
fDesc[12] = "can purchase this game or/and download and evaluate free of charge the trial version available from the developer's website. We play it for seven days. We are allowed to play the game against the computer, another player, or the computer against itself.";
fDesc[14] = "information and video clips. A button gallery lets users customize the toolbar options. This toolbar also contains a search feature that can be used to search for a particular item related with any event in the 2008 games.";
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 = '...';
}
}