var fDesc=new Array(); fDesc[0] = "This game is played by two people. In this game there will be a board of 8 x 8 squares, the squares will have alternate black and white colours, and each player has 3 rows of pieces put on the black squares. When you capture all the pieces of the other player, you win. You can also win when the opponent cannot make any moves. It is possible that none of the players can force a win, in this case a draw game occurs when both players agree so. A piece can only move forward, it can either move one step diagonally or capture an opponent piece by jumping over it. In a single move, a piece can jump consecutively to capture multiple opponent pieces. When an opponent piece can be captured, you must capture the opponent piece, i.e. you cannot move without capturing when there are some pieces that you can capture. When a piece reaches the last row, it will be crowned and gains the ability to move backwards."; 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 = ''; } }