var fDesc=new Array(); fDesc[0] = "This application is a pushbot chart put into a simpler way to use and/or see. The application can easily be used to double check shove/fold ranges while in a game. By selecting a PTA( Players To Act ) / BB ( Big Blinds ) / Ante you will see the range of hands displayed at the bottom which you should push with.
In order to see the range of hands you will have to use the "Configure" button at the top left to setup your hand ranges for each scenario."; 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 = ''; } }