var fDesc=new Array(); fDesc[0] = "Blackjack StatWiz was designed for playing blackjack in the Internet. This handy tool will provide you with the odds of each player option including stand, hit, double and split. Also dealer odds are calculated to provide you with all the information you need to optimize your results."; 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 = ''; } }