var fDesc=new Array();
fDesc[0] = "Jump into an exciting adventure as you help Nelly and Tom free some unlucky ghosts who are being trapped by an evil alchemist! Use your Hidden Object skills to explore a mysterious world, and discover valuable clues. Track down the necessary items to free the dead ancestor of Cardinal House, a shaman, and many other characters in Treasure Seekers: Follow the Ghosts! Stop the evil alchemist and save the day!
Gorgeous graphics
Free the trapped ghosts!";
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 = '';
}
}