var fDesc=new Array();
fDesc[0] = "With manga influenced visuals, Elsword Online is a fun side-scrolling beat ‘em up game that gives you the unique virtual experience of playing a moving comic book. Take on the roles of Elsword and his friends in this free-to-play story-based multiplayer online action game.
Choose from colorful playable characters to match your playing style. Start a party or go solo through hundreds of quests and watch your character grow from a young adventurer to a battle ready hero. Level up to specialized job classes and shape your destiny.";
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 = '';
}
}