var fDesc=new Array(); fDesc[0] = "Oh Pshaw, also known as Oh Hell, is a lot like the card game spades. Players bet on the number of tricks they think they can take. Then the hands are played out and the highest trump card wins, or if no trump cards were played, the highest card of the suit that led wins. The difference between this game and spades is the number of cards each player receives changes every 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 = ''; } }