var fDesc=new Array();
fDesc[0] = "A FREE poker game replayer for Windows and Android. Share your favorite games with your friends. Create poker videos and put them on YouTube, Facebook and Twitter.
Features:
Import your hand history files from any poker network.
Replay your games, in fullscreen if you'd like!
View game statistics.
Create a game video/animation - to be published on YouTube or anywhere else on the web.
Share your games on YouTube, Facebook, Twitter, MSN/ICQ or Android.
Anonymize sensitive game information (such as player names) for shared games.";
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 = '';
}
}