var fDesc=new Array(); fDesc[0] = "NiceDice is a dice game in the style of the famous classic game Yahtzee. The game requires you to get dice rolls comparable to poker hands, such as four of a kind, full house, and straight. Click a button to roll your dice, save the ones you want to keep, and roll again. NiceDice lets you roll them bones and tally the results a single-column Yahtzee game or four-column Yamb game. Choose five or six dice and play alone or in friendly competition trying to outscore another player. Enjoy the clattering sound of dice and a pleasing compact interface. Version 2.2 includes improved graphics, sound track and animated counter."; 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 = ''; } }