var fDesc=new Array();
fDesc[0] = "Perpetuum is a new sci-fi MMORPG that revolves around mankind struggling for power on the distant planet of Nia inhabited by robotic lifeforms.
In the not-too-distant future, a strange anomaly opens the gates of the universe for humans. With this new technology, energy, information and atomic size objects can be transported to anywhere in space.
Main features:
-Persistent universe
-Formable planet surface
-Dynamically changing vegetation
-Time-based character development
-Active raw material simulation
-Real-time, asynchronous combat
-More than 30 various robots, hundreds of equipment items
-Self-controlling economy
-Social networks
-Career centre";
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 = '';
}
}