var fDesc=new Array();
fDesc[1] = "for free is UNLIMITED!";
fDesc[2] = "interface has transparencies effects, in a Vista fashion. The game rules are that of the regular solitaire that´s included with Windows.";
fDesc[3] = "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[4] = "to remove all of the cards from the ten playing stacks. This Spider Solitaire games has three difficulty levels.";
fDesc[5] = "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[6] = "Challenge Deluxe is a unique take on classic fun. Choose from ten of your favorite solitaire variations including Klondike, Tri-Peaks, Spider and more.";
fDesc[7] = "clever soundtrack. Play through over 29 brain-teasing levels or choose your favorite variation in this entertaining new solitaire challenge!";
fDesc[8] = "game came up with the original idea of mixing the popular games of poker and solitaire together. If you are a good poker player or if you just know the rules you will enjoy pretty much this game.";
fDesc[10] = ", Solitaire, Bomberman, Pool, Sudoku, Bombjack, Millionaire, Tetris, Ten-Pin Bowling, Mini-Putt and Mini-Putt 3.";
fDesc[11] = "with computer bots or live opponents by the Internet or LAN.";
fDesc[12] = "online against some of the best solitaire players in the world, or play one of six non competitive solitaire games for fun.";
fDesc[14] = "score. Klondike solitaire card game is playable directly out of your browser, without need to download. All the fun and features of solitaire.";
fDesc[15] = "playable directly out of your browser, without need to download. All the fun and features of solitaire.";
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 = '...';
}
}