var fDesc=new Array();
fDesc[0] = "Play the App of the Dragon Ball Super Card Game and learn the rules as you go! The Dragon Ball Super Card Game is a card game with characters from not just Dragon Ball Super, but countless other Dragon Ball series! Cards use 2 kinds of illustrations:CG and anime!
The Dragon Ball Super Card Game is a two-player competitive trading card game. Players make decks of 1 Leader Card and 50 Battle Cards/Extra Cards to fight it out. The game lets you experience the blazing-fast battles of Dragon Ball in a card game.";
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 = '';
}
}