var fDesc=new Array(); fDesc[0] = "Heads Up Poker Calculator can help show you the odds of winning in heads up texas holdem situations. The calculator has a random hand function, so you can choose to enter hole cards for two players, or you can choose to see the results of one hand against a random hand. In the random hand function, we do not simply choose two random cards to represent your opponents 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 = ''; } }