var fDesc=new Array();
fDesc[0] = "AWSPro Moves Soccer is a small sports game, dedicated to soccer lovers.
Easy to install and with a user-friendly interface, AWSPro Moves Soccer is a perfect way for developing your soccer strategies.
You can first choose to do a small training and after that, play in a tournament or exhibition. You can also choose with which country do you want to play and edit your 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 = '';
}
}