var fDesc=new Array();
fDesc[0] = "Mindgames Friday13 is a great and interactive solitaire game. The object of this solitaire card game is to make 13 stacks of 4 cards each, in ascending order. A standard deck of 52 cards is used.
Any J,Q,K,A are placed in a row left to right. These are first four foundations. Space is then reserved for another nine foundations, three at top row and 6 at row below. One space is left at the bottom for discard cards. The remaining 48 cards are stacked face down in a stock.
The aim is to build on J,Q,K,A and the remaining 9 foundations in ascending value sequence. Each foundation should eventually contain four cards each.";
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 = '';
}
}