var fDesc=new Array();
fDesc[0] = "Overnight, a sinister group called the Thanado rise and begin enslaving people across the world. After losing his best friend and love, Leif is one of many to join a rebellion against the Thanado.
Little does Leif know that he will soon become a key to the rebellion, and a leader in a war against the Thanado.";
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 = '';
}
}