var fDesc=new Array();
fDesc[1] = "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[2] = "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] = "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[5] = "controlling even the smallest detail. This game is for true fans and it is very rewarding, but some gamers may find all its options overwhelming.";
fDesc[6] = "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[7] = "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[8] = "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[9] = "channels include the ITV - UK, ESPN -US, RIO and porn. Ability to pause/resume live TV.";
fDesc[10] = "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[11] = "SPORTS, already came with a great playlist that features popular songs of the most varied of styles. However, you might want to customize it a little bit and add your own songs.";
fDesc[12] = "covers FIFA World Cup 2006. Also bundled useful 8 utilities like Scheduler, World Timer, Moon Phase, Shutdown timer, Chronograph etc";
fDesc[13] = "game. I am not a big fan of sports, but I see men playing this like crazy all the time. The game itself looks like a real soccer match broadcast on TV. The players all look realistic and the rain and snow are pretty to watch.";
fDesc[14] = "individual scoring stats. *Automatic place calculation(compliant with FIFA 2006 regulations). 5 languages (Spanish, English, French, German, Dutch).";
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 = '...';
}
}