var fDesc=new Array();
fDesc[0] = "Solitaires is a very large collection of solitaire card games. The current version (7.0) is made up of 385 different solitaires, including all the traditional ones (as Baker's Dozen, Canfield, Fan, Klondike, Montecarlo, Poker Solitaire, Spider, Pyramid, and so on) and many that appear for the first time in a computer game (as Babette, Backbone, Fission, Flip Flop, Great Herring-bone, Hill of Difficulty, Moojub, Pendulum, Robin Post, Striptease and so on).
With version 5.0, Solitaires has undergone a major overhaul. The code has been thoroughly reviewed and many parts have been rewritten altogether. The resulting improvements and the added features are so many that it is impossible to mention them all. Please click here for the latest news.
Solitaires is powered by two engines (graphical and logical) that are efficient, robust and quite sophisticated. They provide excellent graphics and animation.
Solitaires can generate a million billion different shuffles for each solitaire, which means that if you could play a game every second, twenty-four hours a day, you could expect to replay the same game after 33 million years or so!";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}