var fDesc=new Array(); fDesc[0] = "Texas Hold'em is the most popular variant of poker. You can find it all around the world in casinos, poker rooms, online and in home games. Like most variants of poker, the objective of Texas Hold'em is to win a pot. The pot consists of all bets placed during the game. A pot is won by player who is either able to force other players to fold or to form the best five-card poker hand, using best combination of two hole cards and five community cards."; 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 = ''; } }