var fDesc=new Array();
fDesc[0] = "Pantasia offers more than 90 casino games, like :
-Major Moolah is just one of four progressive slots at Pantasia. It's a three reel, single payline game and it paid out a jackpot on its first day.
- i-Slots are multi-reel, multi-line slots that up the ante with amazing extras like animated video clips, interactive bonus rounds and storylines that unfold over the course of the game.
-Table games presents better graphics, smoother gameplay, you will love our table games so much you will be Glad you stayed at home just to play them!
-Video poker games look great and play fast and loose.
-Specialty Games are a big hit with players at Mayan Fortune. Get your lucky numbers ready for a game of Keno or take your chance on of our high paying Scratch & Win cards.";
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 = '';
}
}