var fDesc=new Array();
fDesc[0] = "Step up to the game table for some island-style casino fun, where the odds are in your favor. Play Texas Hold 'em Poker, Video Poker, Vaults of Atlantis Slots, Blackjack, and Ride the Tide.
Main features:
- Earn power-ups to boost your payout.
- Earn cool comps.
- Play online or offline.";
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 = '';
}
}