var fDesc=new Array(); fDesc[0] = "Chickenfoot is a domino game where the basic object is to get rid of all of your dominoes before your opponents can do the same. Although it is a multiplayer game, there are no teams -- each person acts independently. The game is typically played with Double-9 dominoes (meaning there are up to 9 spots on each end of the dominoes), with other variations including Double-12 and Double-15. Score is kept on a cumulative basis, as each game consists of a number of hands. The number of hands in a game is equal to the number of domino suits: in other words, Double-9 dominoes have 10 suits (0-9), Double-12 dominoes have 13 suits (0-12), etc. While low hand scores are important, in the end only the final cumulative score matters."; 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 = ''; } }