var fDesc=new Array(); fDesc[0] = "The aim of this game is to collect four cards of the same suit with as high a point value as possible, 41 being the maximum that can be achieved. At your turn, you draw either the top card of the stock or the card just discarded by the previous player, add this card to your hand, and discard one card face up. When the game is stopped, all players show their cards and count their scores."; 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 = ''; } }