var fDesc=new Array();
fDesc[0] = "Peles World Tournament Soccer is a nice soccer game, with the help of which you can feel the sensation of a world soccer tournament.
This small game is very relaxing and you have the option to choose your favorite team, from your favorite country. A new feature of this kind of game is the fact that it can simulate weather conditions.";
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 = '';
}
}