var fDesc=new Array(); fDesc[0] = "Yatcee! is a nice and easy to play game with a simple interface. A turn is comprised of throwing the die up to three times to match a scoring option.
Only one game is played (i.e., only one column), and the score is not multiplied by anything.

In the top section of the board, scores are based on the numbers one through six. For example, rolling a 4 5 5 5 6, and placing the score in the fives will result in 15.

If your score in the top section is 63 or greater (equivalent to three each of ones through sixes), you will score a 35 point bonus."; 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 = ''; } }