var fDesc=new Array(); fDesc[0] = "Scala Quaranta uses two packs of 54 French cards. The aim of the game is "to close", that is to make such cards combinations in order to play on the table all the cards in your hand, discarding the last one in the well and leaving the opponent with the greater number of cards in his hand."; 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 = ''; } }