var fDesc=new Array(); fDesc[0] = "Simulate the game of Blackjack. Set Game Rules, Play Strategy and Bet Strategy. Load Basic Play Strategy automatically for any combination of game rules, and then make strategy adjustments for any player/dealer card situation. Establish Bet Strategy by setting formulas to calculate bet amounts after a loss or win, based on the initial bet on the previous hand. Practice your system by monitoring the simulation as bets are wagered, cards are displayed, decisions are made and results are shown according to your strategy setup. Adjust simulator speed to suit your skill level. Adjust play strategy in separate tables for the Dealt hand (First 2 cards), the Dealt hand after a hit, a Split hand (First 2 cards) and a Split hand after a hit."; 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 = ''; } }