var fDesc=new Array();
fDesc[1] = ", 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[2] = "else. Games include MahJongg Spider, MahJongg FreeCell, MahJongg Gaps, and Four Rivers.";
fDesc[3] = "cards, sound, in-depth statistics, and solitaire for points in solitaire quests.";
fDesc[4] = "card games such as Spider, Freecell, etc. And you will be able to learn solitaires not found elsewhere.";
fDesc[5] = "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[6] = ", Flower Garden, FreeCell, Klondike, Nestor, Yukon.";
fDesc[7] = "interface has transparencies effects, in a Vista fashion. The game rules are that of the regular solitaire that´s included with Windows.";
fDesc[8] = "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[9] = "game of solitaire. Play all the way through to reach the terrace of this happy hotel and enjoy the view. So take a few days off and book yourself into Hotel Solitaire.";
fDesc[10] = "This collection includes the most popular versions of solitaire card games, like Pyramid or Fourteen, and its full version is available at no cost.";
fDesc[11] = "collection consists of twelve different card games, which includes the classic Klondike Solitaire, Raglan, Somerset, King Albert, Harp, Gargantua and more.";
fDesc[12] = "with 10 different variations of the Solitaire Card Game: Spider, Lucky Fans, Circle, 21 Blitz, Propeller, Monte Carlo, Accordion, Carfield, Russian and Vanishing Cross.";
fDesc[13] = "variations including Klondike, Tri-Peaks, Pyramid, and Spider! Play a relaxing game of card-matching, or try the all-new Challenge mode that puts a brain-bending spin on classic fun!";
fDesc[14] = ", Blackjack, Doublets, Montecarlo and many others. Solitaire Maniac is a good alternative that fans of card games will surely appreciate.";
fDesc[15] = "solitaire card games in Solitaire Cruise Deluxe. Travel around the world in over 200 challenging levels, from America to Japan.";
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 = '...';
}
}