var fDesc=new Array();
fDesc[0] = "Solve the mystery of your missing parents in this thrilling fantasy adventure/pet raising game, Wildhollow .
A whole world filled with dragons, wizards, adventurers and near-sighted barbers awaits you in this exciting adventure. Solve quests, discover colorful locations and talk to wacky characters as you traverse a world filled with tongue-in-cheek references to common fantasy cliches. In your travels you will encounter greedy merchants, incompetent adventurers, clueless wizards - and much more.";
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 = '';
}
}