var fDesc=new Array();
fDesc[1] = "greatest selection of games and limits: Texas Hold'em, Omaha, 7 Card Stud. Now over 17 million players. Download PartyPoker now!";
fDesc[2] = "We take every necessary precaution and step to protect the integrity of our Poker Room";
fDesc[3] = "games without paying any subscription. QQ Games is an official plugin for Aol Instant Messenger and it offers a wide collection of online casual games that are totally multiplayer and free.";
fDesc[5] = "kinds of video games, from classic arcade games to the newest PC hits. It is the perfect software for all gamers, since you can play the games in its original format, right in the Game Tap window.";
fDesc[9] = "the best sites to learn to play poker, as they offer more free of charge tables than any other poker site for all to practise and sharpen their skills. There are lots of poker games to play, such as the popular Texas Holdem, Omaha, Omaha High Low, Stud and more.";
fDesc[11] = ".wsSpace Invaders is a science fiction series, but here invaders is one of the most popular arcade games, a pioneer in the s";
fDesc[14] = "Win a Ferrari Modena and get $5 FREE for installing free online casino games.";
fDesc[15] = "cars and trucks, in order to pick up the Christmas gifts that Santa has lost. Your mission will be to collect these presents before Christmas arrives.";
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 = '...';
}
}