var fDesc=new Array();
fDesc[0] = "Sarah’s idyllic childhood home has been devastated since the mechanical army of Lord Marcus invaded the country. And it’s getting worse: the mean machines plan to kill off the Great Tree deep in the Ancient Forest to rule these lands forever.
Main features:
- More than 90 challenging hidden object stages;
- 10 brilliant game mode variations;
- A fascinating fictional world to explore.";
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 = '';
}
}