var fDesc=new Array(); fDesc[0] = "The deck of 36 cards is shuffled, and each player receives six cards. The top card on the remaining deck is made visible and placed at the bottom of the deck across it (so that its denomination is seen). This determines the trump suit and the revealed card is actually part of the deck, the last card to be drawn. The player to the attacker's left is always the defender. If the attack succeeds the defender loses his or her turn and the attack passes to the player on the defender's left. If the attack fails, the defender becomes the next attacker."; 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 = ''; } }