var fDesc=new Array(); fDesc[0] = "The Pinnacolox2 is played with 2 packs of french cards, in opposite couples. The dealer deals 13 covered cards for each player. The remainder of the pack is placed in the center and the first card of the well is uncovered. Each player, in turn, must draw a card from the pack or the well, insert it between those in his hand, play if it's possible, one or more arrangements and then discard an uncovered card in the well. Each player must make arrangements to play on the table or to tie to the arrangements just played by himself or by his partner so to free himself from the cards. The target of the game is to get the top score through cards and highest value of the arrangements."; 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 = ''; } }