var fDesc=new Array(); fDesc[0] = "Combines the fast action of Tetris with the card-playing logic of Solitaire. As your card begins to fall, you move it over the stacks using the arrow keys. Stack three of a kind or a straight flush and the cards collapse. The game is over when there's no room for the next card. This version (2.1) includes 4 different ways to play, background music, sound effects, and a high score list."; 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 = ''; } }