var fDesc=new Array(); fDesc[0] = "The object of this game is to move all your pegs in the counter clockwise direction until they are all at the lower right region, they can then be removed from the board.
When all your pegs are at the lower right region, then you can start to remove them. Note that you can remove a peg that is closer to the goal than the steps shown on the rolled die only if there are not other pegs that are further from the goal than this peg."; 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 = ''; } }