var fDesc=new Array(); fDesc[0] = "This is the drills component of the Blackjack Drillmaster program. It teaches you a set of generic Basic Strategy plays that will put you on even footing with the house. And if you feel like pushing the envelope, you could also learn how to count cards. It will teach you the count value of each card, how to keep a running count, how to determine the true count and how to properly size your bets, as well as when and how to deviate from Basic Strategy. Get the knowledge and all the practice you need with the help of this program. With the focused training provided by this program you are well on your way to having more winning sessions."; 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 = ''; } }