var fDesc=new Array();
fDesc[0] = "United Football is a free online multiplayer football game.
Main features:
- Play with and against thousands of online players with a unique and dynamic 3rd person viewpoint. Train against bots and take the skills you learn to the field against real players.
- Earn UF$'s by playing in team games with your friends and use your winnings to unlock skills, moves, and other cool stuff.
- Create and manage your own team and recruit other online players, or be scouted and signed up as a star player for another team!";
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 = '';
}
}