var fDesc=new Array(); fDesc[0] = "This game is a Freecell solitaire card game clone with a mathematical twist. You are required to put a set of randomly placed 50 cards in 5 colours, and numbers 0 to 9 each colour, back in order.

Features:

- Specify colours and number font of your choice
- Three card types
- Put pictures as card background
- Card move animation
- Valid cards will move automatically to the Solution Stack
- Save and load saved games
- Unlimited undo
- Print cards to play this game without a computer
- Screen display colour schemes"; 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 = ''; } }