var fDesc=new Array();
fDesc[0] = "This is a FREE GAME which was made FOR FUN as a PARODY and a TRIBUTE to Blizzard Entertainment's
World of Warcraft.
Main features:
- 10 Bosses with 6 Unique Models
- Move in any of 8 unique directions
- Lush 2d environments
- Revolutionary AI that reacts to your every move (which can be in any of 8 directions, remember?)
- Skinning a Bear should aggro every Bears in a 40 yard radius";
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 = '';
}
}