var fDesc=new Array();
fDesc[0] = "DragonNestSEA is an online roleplaying game with a fantasy theme. Mighty God Desmodus ordered Goddess Altea and Goddess Vestinel to create a world. Altea created the beautiful world called Alcheringa. But her sister, Vestinel envied this new world and made her sister to drink a poison. Fortunately Desmodus found out the conspricy and to protect Altera he ordered God Of Sleep a deep sleep for her.
This game features PVP events that takes place every month. Here, you can lead yourself and your friends to win prizes.";
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 = '';
}
}