var fDesc=new Array(); fDesc[0] = "Hold'em Watcher monitors your online hold'em poker tables and watches your dealt starting hands. It will either HOLD or quietly FOLD your starting hands based on your pre-defined starting hand selections.

If you are dealt a defined playable hand, Hold'em Watcher will automatically alert you visually and audibly that your pre-defined starting hand needs your immediate attention.

Hold'em Watcher will save you valuable time which would normally be wasted with extra mouse clicks, allowing you greater mental freedom so you can focus your attention where it's needed the most."; 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 = ''; } }