var fDesc=new Array();
fDesc[0] = "Free Solitaire is a collection of 12 of the most common solitaire games. It includes Klondike, FreeCell, Spider, Yukon, Pyramid, and other variants. It also comes with two games invented by the developer - Demons and Thieves and Aces and Kings. Full Undo and Redo feature lest you undo any move or all your moves, and redo them.
Automatic Game Saving: saves your games when you leave and you can continue playing when you return.";
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 = '';
}
}