var fDesc=new Array();
fDesc[0] = "Triple Triad Extreme is a free to play card game for Windows OS.
Main features:
- Find where you rank in a plethora of leaderboards ranging from your Triple Triad game ranking to your character progress.
- Relive your favorite and not-so-favorite Triple Triad Extreme moments by replaying historical games.
- Learn about the thousands of unique Triple Triad cards, how to obtain them, their rarity, and information about the unique Triple Triad decks only found at Triple Triad Extreme.";
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 = '';
}
}