var fDesc=new Array();
fDesc[0] = "Elephant Games proudly presents the next thrilling installment of the Surface series! You’ve been seeing things that can’t possibly be real. What starts as a simple doctor’s visit turns into the chase of a lifetime! The Huntsman is after you and Fairyland’s in danger. With only fragments of your memory, can you save the kingdom before it’s too late? Find out in this breathtaking hidden-object puzzle adventure!
Learn the truth about Hansel, Gretel, and the witch in the bonus chapter. Find cool morphing collectible figures. Discover hidden flowers in every scene. Earn exciting achievements!";
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 = '';
}
}