var fDesc=new Array(); fDesc[0] = "Classic Solitaire is the most popular solitaire game. A minor change of the game rule makes the game more fun. The game can be paused at any moment and continued from where it is paused, so it is convenient for you to play the game on the go. The object of the game is to use all the cards in the deck of sever playing stacks to build up the four suit stacks in ascending order, beginning with the aces."; 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 = ''; } }