var fDesc=new Array();
fDesc[0] = "Simple Postflop is the software for calculation of Nash-equlibrium on preflop and on postflop. This poker tool builds GTO strategies in preflop and postflop situations according to bet-sizing and ranges of two players.
Main features:
-Very accurate results of calculations;
-Incredibly fast and free calculations of Turn and River;
-Calculations could be processed in the Cloud;
-Affordable prices;
-All of you ideas taking into count and used for improvement of Simple Postflop.";
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 = '';
}
}