var fDesc=new Array();
fDesc[0] = "This is the perfect game for poker and puzzle lovers. Create high-scoring poker hands from a puzzle-like playing field of random cards. Use your winnings to travel the world, meet new Poker Pop players, and buy exotic souvenirs.
Main features:
- Culture-specific music for each locale
- Learn about the cities you travel to and send postcards to friends
- 3 modes (Tour, Classic, and Arcade)";
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 = '';
}
}