var fDesc=new Array();
fDesc[0] = "Blackjack Multi Advisor (BMA) is a powerful and easy to use professional software for blackjack players. BMA is doing very accurate, real-time calculations when you play blackjack and gives you most important factors and statistical information. Use Blackjack Multi Advisor at online/live blackjack to improve your strategy, minimize risk and achive more incomes or just for learning purposes.
Main features:
- Perfect card counting
- Optimal bet calculation (minimizing risk and maximizing profits)
- Determination of best action (play using perfect strategy)
- Comprehensive statistical information
- History and summaries of your game play";
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 = '';
}
}