var fDesc=new Array();
fDesc[1] = "away with seriously superb graphics, all the latest games and $888 Free welcome bonus!";
fDesc[2] = "wonderful home casino with hottest games packed within, including craps, video poker, blackjack, keno, slots and baccarat. Las Vegas Super Casino has highly adjustable bank limits, adjustable variable speed of games, and with this game user can play without fear of loosing,";
fDesc[4] = "Vegas Keno, Devil's Keno, Snowman Keno, Ten Card Keno, Four Card Keno, Wild Square Keno, and Catch-Em All Keno.";
fDesc[5] = "game. Features incude Autoplay, Advanced Card Marking Features, Sound, speed controls, Save/Load Game and more.";
fDesc[6] = ", Casino Policies GET $100 FREE !";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}