var fDesc=new Array();
fDesc[0] = "Holy Beast Online is a nice and easy to play 3D Fantasy MMORPG game.
Main features:
- Cute animals sometimes evolve into fighting beasts!
- Eliminate the evil rampaging Insects and restore balance to the world!
- You can transform from Beast to Human at will!
- Beasts can also evolve into a higher form!
- Items shine and glow when they are enhanced!There are lots of interesting items!
- Players can trade items with the Market function!
- you can set up Groups and Packs with lots of members!
- unlock the secret of ancient mysteries.";
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 = '';
}
}