var fDesc=new Array();
fDesc[0] = "Role-playing, strategy, and shooter action in a MMOG The largest handcrafted online world of its kind. Over 10 thousand concurrent players per game world. The largest MMORPG battles ever - involving thousands. Ultimate PvP action, the #1 choice of top players and clans.
Main features:
- Adventure and Explore
- Play it your way
- Invent Discover Create
- Fight Battles - Build an Empire
- Interact and shape the World
- Become a Legend
- Rise to the Challenge
- Let your voice be heard";
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 = '';
}
}