var fDesc=new Array();
fDesc[0] = "HoldemViewer is a free hand selection tool for any serious poker player or student.
HoldemViewer can supports a slew of hand ranking methods as well as user-defined rankings and partial selection and evaluation.
With HoldemViewer you get quick hand selection via drag select, selection by gap and kicker, textual range input, classic top-x slider as well as arbitrary interval selection, batch evaluation of all hands against an input range and descriptive output of ranges and equities .
You can also generate charts colored by equity and get useful tools such as a unexploitable jam-fold range selector for open blind vs. blind situations.";
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 = '';
}
}