var fDesc=new Array();
fDesc[1] = "free demo for evaluation from the developer's website. Depending on our computer capacity we can choose between two downloadable demo versions, the small one or vanilla version, featuring the English & Scottish Leagues and the bigger version, which includes up to 12 Leagues.";
fDesc[2] = "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[3] = "channels include the ITV - UK, ESPN -US, RIO and porn. Ability to pause/resume live TV.";
fDesc[4] = "compete with others teams. You can place your players in the play field by selecting different formations. You can play in the Elifoot world manager league, obtaining rating and records worldwide.";
fDesc[6] = "directly to victory and profit! Football Manager 2008 comes right from Footbal Manager 2007, and in this new version, many other features are incorporated, and they are so many, that It might take a lifte time to discover 'em all!";
fDesc[7] = "engine.";
fDesc[8] = "Pinball: Soccer *****. You can choose also to play against differently skilled computer opponents and attempt to win a series of games up to the Championship.";
fDesc[9] = "editor by liberostelios. As its name mean, the editor allows you to modify and create your own stadiums for the PC game version, in fact there are a lot of kits developed by different PES community members that were created using this tool.";
fDesc[10] = "of various playfields and players, weather visual effects, or live cheering.";
fDesc[12] = "details. Tracks teams, players and referee stats. Generates statistics tables, result prediction. Includes a Web site creation feature.";
fDesc[13] = "Premier League, French Ligue 1, German Bundesliga, Italian Serie A, Spanish La Liga, Carling Cup, FA Cup, Euro 2008.";
fDesc[14] = "them type of game. With great models and stadiums, the game does offer a lot of fun. Specially if the players organize themselves to play as a team.";
fDesc[15] = "game is that you need to use both the mouse and th keyboard to play. With good skills and judgement you can beat the computer, but the computer is not an easy opponent.";
fDesc[16] = ", Brazil and Argentina. It is feature-rich software that tracks statistics like game scores, won/lost record, kicks, goals, fouls, blocks, game scores, team standings etc. Soccer Stat Tracker also provides you with a ‘Top 10’ team list for specific betting game.";
fDesc[17] = "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[18] = "with great accuracy! If you want to make a living at sports betting this will be an invaluable tool for you!";
fDesc[19] = "month for Members. 2D and 3D modes of play, accurate physics and modelling, play soccer and chat with others on the Internet.";
fDesc[20] = "leagues. Stats are fully configurable and apply to all leagues, teams, players, referrees, predictions. Available in English, French and Spanish.";
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 = '...';
}
}