var fDesc=new Array();
fDesc[0] = "Try to become a powerful mage taking part in an ancient tournament of magical conclave. Freedom of action gives a lot of choices for character development. Customizable look and character of the set of game objects do not give you a limited freedom of creativity, especially after the passage of the main storyline of the game in a free life.
System requirements:
Operating system: Windows 98/ME/2000/XP/Vista/Windows7
Processor speed: 1000 MHZ
RAM: 512 MB
Hard drive space (uncompressed): 60 MB
Graphics Card: any DirectX 8 compatible
Sound Card: any";
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 = '';
}
}