var fDesc=new Array(); fDesc[0] = "Smart Poker Bot is an automated poker bot designed for playing professional No Limit Texas Hold'em. It can play 12 tables at a time in ring games, Sit and Go's, or Tournaments. It can play 2 and 6 seat tables.

Smart Poker Bot collects information from several sources including your hole cards, table position and your opponents actions. The data is stored in a neural network that predicts the hand strengths of your opponents! And then determines the best course of action, once it is your turn based on ALL the information available including the actions made in the current round of betting"; 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 = ''; } }