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] = "choosing your desired image and name. Then, you can choose to play some of the five games featured: Ride The Tide, Hold´Em Poker, 21 Blackjack, Video Poker or Slots.";
fDesc[3] = "One Klondike Pyramid, FreeCell, Spider solitaire, Flower Garden, Diplomat , Spider solitaire Two Suits, Eighteens, Forty Thieves, Grandfather's Clock, Royal Rendezvous, Spider, Suit, and others.";
fDesc[4] = "playing slot machines but without risking your money. With Super 5-Line Slots, you will have four different slot machines in your computer with different themes, to play at any moment and feel as if you were in a real casino.";
fDesc[5] = "with according to their interest. The first option is Challenge; the player will have to complete the required poker hands displayed in the box of the screen before the cards run out. The player will receive an extra bonus for each card and time remaining.";
fDesc[6] = "Highly addictive, Ancient Tripeaks is full of fun and entertainment and it represents a convenient gate-away after a stressful working day. It features eight unique game modes to suit all types of players: from beginners to experienced!";
fDesc[7] = "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[8] = ", with a user.friendly interface and top quality graphics and animations. 123 Solitaire has a freeware license, however there are some basic actions that are restricted.";
fDesc[9] = "popular games of a land-based casino, but comfortably from home, at any moment. Party Casino features thirty nine different games, including all the classic card and board games, as well as original slot machines and more.";
fDesc[10] = "like Bridge, Hearts and Gin Runny to family games like Crazy Eights and Old Maid. It also includes fifty different Solitaire games. Many of the games can be played with Hoyle computer players, and some games can be played with several people in front of your computer.";
fDesc[11] = ", Pinochle, Hearts, Spades, Bridge, Spites & Malice, Rummy 500, Cribbage, Canasta, Gin, Poker, Solitaire, Crazy Eights, Memory Match, Old Maid, Go Fish and War.";
fDesc[12] = "the games available, Patience shows the proper rules and maintains statistics and high score tables. You can customize the playing environment by choosing the game layout, backgrounds, card decks, card drop, sounds and animations";
fDesc[13] = "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[14] = "that use the 52 card International Pattern deck, games for the 78 card Tarock deck, eight and ten suit Ganjifa games, Hanafuda games, Matrix games, Mahjongg games, and games for an original hexadecimal-based deck.";
fDesc[15] = "completing games one by one. If you wish to finish the game it will be automatically saved.";
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 = '...';
}
}