var fDesc=new Array();
fDesc[1] = "in Europe Be a Legend mode, which manage a single player to take him from small teams and benches to the maximum level. The graphics and atmosphere of the stadium was updated and enhanced to complement the experience of PES.";
fDesc[2] = "I certainly believe there is no beating this year's FIFA. The most apparent change this year is the pace of the game. Everything has been tweaked so that the game plays considerably faster. The first time I noticed this is when the goalie gets the ball.";
fDesc[3] = "you ask me. The franchise started back in the year 1993 on the Sega genesis. Since then, this game has been improving in almost every aspect possible.";
fDesc[4] = ", and now it is easier to control the ball more accurately in the desired direction. With new menus resembling Windows Vista, more goal celebrations, more technical gestures and, of course, mandatory improved graphics, Pro Evolution Soccer offers another choice to Soccer fans";
fDesc[5] = "soccer game that tries to deliver the most realistic graphics and playability to both the PC and next-gen consoles. This game has a few new modes with comparison to FIFA 08. The first one that you will notice is \"represent your country.\"";
fDesc[6] = "by Konami. Pro Evolution Soccer 5 (Winning Eleven 9 in Japan and World Soccer Winning Eleven 9 in the US) was launched by Konami in October 2005 and showed the images of John Terry and Thierry Henry on the cover.";
fDesc[7] = "most obvious new feature. With more tricks and an overall more attacking mentality, with players encouraged to take people on. More licensed teams are included along with new boots, hairstyles and an improved Master League.";
fDesc[8] = ", which brings a number of really relevant enhancements on and off the field. It presents a challenge training mode which includes at least 40 varied tests for the player to complete. The game also supports online playing.";
fDesc[9] = "the license of FIFA and therefore, the license of real players and leagues. This version of FIFA brought important innovations, such as an improved game system which was the most realistic one to date, above all regarding entrances, high balls, etc.";
fDesc[10] = "on the sport of soccer. Version 2.0 brings improvements to the graphics and sound and many error fixes to enhance the game capabilities.";
fDesc[11] = "replays as .AVI files. You can play using your keyboard or joystick. The program has a database of 40 soccer leagues worldwide. You can play with any team from any country.";
fDesc[12] = "at the beach. The people of IncaGold brought this game as no one other could, with great graphics, including shadows and sand effects and variety of option you can choose from.";
fDesc[13] = "soccer game that tries to deliver the most realistic graphics and playability to both the PC and next-gen consoles.The first one that you will notice is \"represent your country,\" which allows you to pick a country and start a sort of identity online.";
fDesc[14] = "soccer game that tries to deliver the most realistic graphics and playability to both the PC and next-gen consoles. This game has a few new modes with comparison to FIFA 08.";
fDesc[15] = "the world. What you are going to do in this game can be categorized into two main parts: building up your abilities as a professional soccer player; and deal with relationships and contracts.";
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 = '...';
}
}