var fDesc=new Array();
fDesc[1] = ", Deuces Wild, Deuces and Joker, Jacks or Better, and Joker Poker, Keno, plus sixteen types of Video Slots, and thirty-six types of Classic Slots. We can get support online; see the hot games, etc.";
fDesc[7] = "Vegas Keno, Devil's Keno, Snowman Keno, Ten Card Keno, Four Card Keno, Wild Square Keno, and Catch-Em All Keno.";
fDesc[8] = "advantage of a live update of draws from the internet for each casino included and get the best out of your bet !";
fDesc[9] = "you have to try to improve your chances of winning and get the best out of your bet !";
fDesc[10] = "incude Autoplay, Advanced Card Marking Features, Sound, speed controls, Save/Load Game and many more.";
fDesc[11] = "ultimate software you have to try to improve your chances of winning and get the best out of your bet !";
fDesc[12] = "options to suit your needs. You can choose the highest and lowest ball to draw, odds or evens, sequences, duplicates and more..........";
fDesc[13] = "game. Features incude Autoplay, Advanced Card Marking Features, Sound, speed controls, Save/Load Game and more.";
fDesc[16] = "credits to try to win as much as possible in 15 turns.";
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 = '...';
}
}