var fDesc=new Array();
fDesc[0] = "Version 3 is finally released!
Now with weapons and spells! Kill monsters by magic Fire Ball, Power Shield and Trap Mine. Experience absorbing, continuous playlust without delays, detailed character skin and comic movements, a complex playability, and a seamless blend of natural gameplay and comfortable control! A dreadful Legocefals and terrible Eyekensteins want to stop Quty. Lets help him!
Immerse yourself in a living, beatuful and at the same time dangerous world with lush surroundings, unbelievably fluid animation and an unparalleled gameplay.";
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 = '';
}
}