var fDesc=new Array();
fDesc[0] = "Hit the courts for some rowdy tennis fun with seven flavorful tennis characters! Featuring simple, easy-to-learn hitting and aiming, Tennis Titans brings together a crazy crew of colorful cartoon characters who all want the same thing - to be Court Champion. Plus, two great game modes means there's more ways to win! Charming, delightful, and beautifully rendered, Tennis Titans is a challenging treat for the entire family.";
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 = '';
}
}