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] = "resolution to play this game. You can play Tik's Texas Hold 'em in three modes: Cash Game, Tournaments and Scenarios. Both Cash Game and Tournament game options are customizable, allowing you to play the way you want and even create your own custom games with rules you create.";
fDesc[4] = "against online PokerTH users. PokerTH allows up to seven human players in a game. With PokerTH you can chat with online players, start or join an Internet game and create network games.";
fDesc[5] = "site. You will receive a five-digit code by email to activate your new account. After that, you´ll have access to limit and no limit variations of poker games like Omaha, Double-Flop Texas Hold em, Omaha, 7 Card Stud, Elimination or Blackjack.";
fDesc[6] = "and online casinos. Its increasing popularity is due to events like the Word Series of Poker, the biggest world tournament of poker held in Las Vegas.";
fDesc[7] = "exact solution quickly.. You can input the cards that each player has discarded, the cards on the board and the dead cards. Then, if you press the \"Evaluate\" button, you will get an Output in the lower end of the window.";
fDesc[8] = "to be played. It has all the major variations of poker, such as Texas Hold’em and Five Card Stud, lots of standard single-player card games like Solitaire and Memory.";
fDesc[9] = "your game. Offers exact odds and advice while you play.";
fDesc[10] = "5-dice hand using 2 personal dice in the pocket and 5 more that are up-for-grabs for everyone! Featuring vibrant graphics, achievement trophies, and endless possibilities, you just can't beat the winning combination of YAHTZEE and Texas Hold 'em for high-rolling, high-stakes fun!";
fDesc[11] = "today’s favorite varieties of poker to choose, ranging from Texas Hold’em and Five-Card Stud to Deuce-to-Seven Triple Draw and Razz. All of the above said games, can be played online.";
fDesc[12] = "recommendations, number of outs, over card percentages, online poker tells, pocket card ranks, pocket card nicknames and much more.";
fDesc[13] = "capture all the upcards from the game table and display detailed stats for all betting rounds instantly.";
fDesc[14] = "Hold'em poker, developed in corporation with Texas Hold'em online professionals. Includes rules, draws, odds, flop/turn/river play etc.";
fDesc[15] = "similar to your own pre-flop - The number of hands better than yours, and how good they were pre flop - Straight and Flush Warnings - Manual Mode - Support for over 50 popular poker programs, and many more in forthcoming updates";
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 = '...';
}
}