var fDesc=new Array(); fDesc[0] = "Play the classic game of Checkers against either another player or the computer. The difficulty of the computer opponent can be customized which allows the player to alter the difficulty of the game according to their own skill. The game of checkers is also known by other names. The other names that it is known as include draughts in the United Kingdom, American checkers, straight checkers and draught. Checkers is a form of board game that is played on an eight by eight square board that is similar to Chess."; 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 = ''; } }