var fDesc=new Array(); fDesc[0] = "Online 7-Card Stud Inspector is an add-on software for online 7 card stud poker game. If you run the Inspector while playing online, it will keep track of all the live cards and all the dead cards. The program then displays detailed stats for your current hand instantly.

There's no need to enter your cards or opponents' upcards. Better yet, you no longer have to try to remember which cards are dead or live. The program does all the work for you. All you have to do is concentrate on your game and glance at the stats as you 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 = ''; } }