var fDesc=new Array(); fDesc[0] = "Texas Holdem Hand Calculator - You can choose any starting cards, and see how they compare (for example AA vs 2 suited-connectors) preflop. You can then add the flop cards and see how the odds of winning change for each hand.
There is no random hand function in this calculator. It does not tell the future, you need to enter values for your opponents."; 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 = ''; } }