var fDesc=new Array(); fDesc[0] = "The classic Solitaire game in which you need to move stones, the goal of the game is to leave only one stone on the board. The allowed move is to jump a stone through an adjacent stone to a free hole immediately after the second stone (like in checkers, but the movement is vertical or horizontal, you cannot move diagonally), then the stone over which you jumped is removed.

The classic Solitaire game in which you need to move stones, the goal of the game is to leave only one stone on the board. The allowed move is to jump a stone through an adjacent stone to a free hole immediately after the second stone (like in checkers, but the movement is vertical or horizontal, you cannot move diagonally), then the stone over which you jumped is removed."; 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 = ''; } }