var fDesc=new Array();
fDesc[1] = "of the game was intended for tournament competition, however the game was so good that it became an instant hit. The game is fun, has great graphics and its free.";
fDesc[2] = "thirty hills and compete against other competitors or the CPU. You are also enabled to play online. Fun is unlimited as well as the options this program provides you with.";
fDesc[3] = "World Cup. There are several game modes that provide variety. This is a solid option for cricket fans out there.";
fDesc[4] = "channels include the ITV - UK, ESPN -US, RIO and porn. Ability to pause/resume live TV.";
fDesc[5] = "Stars World Championship and the Dominoes Stars World Cup. Dominoes Stars offers the possibility of learning how to play dominoes.";
fDesc[6] = ", and just fun to play! New exclusive game mode - join and win the volley World Cup! Get ready for the Olympics!";
fDesc[7] = "include few file converter, especially video files; 3gp File players as well as game software. One of their game products is World Cup Manager 2006. World Cup Manager 2006 is created based on the 2006 Germany world cup and all the teams, player, team managers";
fDesc[8] = "covers FIFA World Cup 2006. Also bundled useful 8 utilities like Scheduler, World Timer, Moon Phase, Shutdown timer, Chronograph etc";
fDesc[9] = "Premier League, French Ligue 1, German Bundesliga, Italian Serie A, Spanish La Liga, Carling Cup, FA Cup, Euro 2008.";
fDesc[10] = "position, dynamic speed and acceleration view, offside and forward lines, trajectories of the players und even more.";
fDesc[11] = "individual scoring stats. *Automatic place calculation(compliant with FIFA 2006 regulations). 5 languages (Spanish, English, French, German, Dutch).";
fDesc[12] = "your character, motherland and customize your skills.";
fDesc[14] = "begin in the muddy village league and work your way up to the international top class of football and build up your own stadium! Now it's up to you: If you also find your way in the dubious business of football and if you get your finances under control, it's just a matter of your skill until you win the cup and are the Slam Soccer World Champion 2006!";
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 = '...';
}
}