var fDesc=new Array(); fDesc[0] = "Texas Hold'em Poker is a strategically complex poker variant that is widely played. It is used to determine the world champion in the annual world series of poker. This software is a simulation of the game with all opponents from amateur to genius. It features smarter computer opponents, and is a complete simulation including rotating rounds and blind bets. Play until you or one of the computer opponents win a set amount of cash. You can change the card backs. It also includes advice on win probability."; 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 = ''; } }