var fDesc=new Array();
fDesc[0] = "Professional Blackjack Analyzer (PBA) is a comprehensive software tool for the analysis, simulation, and practice of the game of blackjack.
PBA is organized into four basic modules:
- the Rules Editor for entering rules;
- the Strategy Analyzer, which determines the optimal basic or counting strategy for the given set of rules;
- the Game module, for practicing the chosen rules and betting/counting system;
- the Simulator module, for determining the statistical advantage for the given rule set.";
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 = '';
}
}