var fDesc=new Array();
fDesc[0] = "Soul of the Ultimate Nation is a MMORPG developed by Webzen. It represents the perfect balance between advantages of console package RPG and the battle system of MORPG. Users can communicate within the town to form a community and play through various economic activities.
In addition, by operating a unique battle zone system, users are able to enjoy stylish combats and experience the story line.
In Soul of the Ultimate Nation's Battle Zone System, users are able to choose a map, difficulty, number of participants, and reward type to personalize the battle and dungeon. In addition, depending on the way users choose it can differ from Mission, Hunting, PVP, and Event.";
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 = '';
}
}