var fDesc=new Array();
fDesc[0] = "Play as Prince Zuko and battle your way through 18 missions across 3 campaigns in the retelling of Avatar's third season from Zuko's perspective. Take control of 10 heroes and command 30 units as you fight enemies, slay dragons, and learn to become a mighty firebender! The full version of Avatar: Path of Zuko features:
- Play as Prince Zuko
- Battle the Fire Nation to regain your honor
- Play a mini-game to regain health and chi";
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 = '';
}
}