var fDesc=new Array();
fDesc[0] = "Slice is a poker equity calculator for Mac and PC.
Slice is a poker equity calculator (like the very popular PokerStove) for Holdem, Omaha, Omaha Hi/Lo, Stud and Stud Hi/Lo.
Slice has an advanced range syntax, range aliases and integration with Holdem Manager and Poker Tracker 3 so you can load hands you've played automatically! All the Slice features make it one of the most powerful poker equity calculators available!";
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 = '';
}
}