var fDesc=new Array(); fDesc[0] = "Checkers/Draughts is a traditional board game played in many countries. To play the game, one needs a chess board and pieces traditionally called men. Now, to play the game, we must go over the most important questions.

What board size should the player use? Depending on the checkers variant, it may be 8*8 , 10*10 or 12*12 or even 14*14. What colour is the bottom left square?
The colour depends on the checkers variant. It may be black or light."; 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 = ''; } }