var fDesc=new Array();
fDesc[0] = "Pokémon Online is open source and available to download for Windows, Mac, Linux, and Android. To play Pokemon online you need to build a team, by selecting a number of pokemons with which you want to compete against other players.
After playing and winning several matches rewards are included. A player will be able to level his pokemons in skill. Knowing that this game is about team-fights, you need to coordinate your pokemons to their best.";
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 = '';
}
}