var fDesc=new Array();
fDesc[0] = "Sword 2 is amazing game to the West with many game enhancements. Set on a mysterious, dangerous continent with a story inspired by Europe’s exploration and conquest of America. Sword 2 is destined to dominate the world of MMORPGs by virtue of its groundbreaking design features, fast-paced gameplay and amazing graphics.
Word 2 gives players more options, variety, entertainment and challenges than any other MMORPG can by virtue of its unique design features. With multi-character control (MCC), players are able to command up to three characters simultaneously. No longer limited to playing one character at a time, players can instantly switch between their favorite character classes or control them all at once.";
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 = '';
}
}