var fDesc=new Array();
fDesc[1] = "generous bonuses, a loyalty comps point program.";
fDesc[2] = "for free is UNLIMITED!";
fDesc[3] = "of casino games directly from their homes. Among the popular games, players will find table games like Blackjack, Craps, Baccarat, Mulligan Poker, among others.";
fDesc[4] = "table and card games like Baccarat, Blackjack, Casino War, as well as three types of roulettes and more than 30 slots machines, including the classic reel slots, multi line slots and original multi spin slots.";
fDesc[5] = "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[6] = "stripped and her sensual pose never left a man indifferent! The play is also attended with pleasant music which adds it intimacy.";
fDesc[7] = "stripped and her sensual pose never left a man indifferent!The play is also attended with pleasant music which adds it intimacy.";
fDesc[8] = "times as you like, practice the game and see how many times you will win.";
fDesc[9] = "is so absorbing that you can't stop playing!";
fDesc[10] = "game make your playing more pleasant. Excellent graphics will astonish you nicely and the game itself will produce an unforgettable impression!";
fDesc[11] = "game is so absorbing that you can't stop playing!";
fDesc[12] = "Written for International Baccarat players Wong Phat Phat and Patrick Moore who wanted to test their skills outside of a casino environment.";
fDesc[13] = "sound effects will carry you into the past; original personages, unusual cards and bright colors will embellish the picture.";
fDesc[14] = ", practice the game and see how many times you will win.";
fDesc[15] = "make your playing more pleasant. Excellent graphics will astonish you nicely and the game itself will produce an unforgettable impression!";
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 = '...';
}
}