var fDesc=new Array(); fDesc[0] = "Create your own goalkeeper, choosing between handling, reflexes, jumping and charisma skill. Then select your starting team from 6 different leagues: England, Italy, Spain, France, Germany and Netherlands.
The game features the Training Screen, where you can train yourself to increase your skills and your chances to do well in the next match. Then there's the Statistics Screen, where you can take a look at every possible stats you want! Lastly, the Contract/Coach Talk Screen will let you choose your attitude towards the team, if you want to stay there or move, and also talk to your coach to convince him to make you play the next match (in case he doesn't think that way!)."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }