var fDesc=new Array();
fDesc[0] = "720°Hold'em is a Texas Hold'em Poker expert system. This software is the ultimate tool for playing Hold'em (fixed, pot-limit or no-limit) online.
Your decision to call, raise or fold pre-flop, on the flop and on the turn & river card must be based on several factors :
- Card knowledge / How good your cards are / Handstrength relative to n:o players
- Your position
- People knowledge / Tight-loose players / Your relative position to these
- How much money you must invest / Amount to call / Potodds
- Knowing the odds / Poker mathematics
- The number of players in the 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 = '';
}
}