var fDesc=new Array(); fDesc[0] = "This is our freeware blackjack game. Just like the standard version, this is also based on the game component of the Blackjack Drillmaster program.

However this is limited to one-deck games with no split option. Good for non-serious plays or just to pass the time. If you want a full-featured blackjack game, try 1-on-1 Blackjack or if you want to learn basic strategy and card counting, try 1-on-1 Blackjack Trainer or Blackjack Drillmaster.

1-on-1 BlackJack Lite - a neat little piece of software that installs on your pc an easy to play version of BlackJack."; 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 = ''; } }