var fDesc=new Array(); fDesc[0] = "Create the highest scoring poker hands on a 5/5 grid.

You receive 26 cards total which you must arrange on a 5/5 grid. You cannot move a card once it has been placed except for one replacement card.

After all 26 cards have been used, poker hands are scored.

There are 5 hands down and 5 hands across for a total of 10 hands.

The player with the highest score after a certain amount of rounds will win the game."; 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 = ''; } }