var fDesc=new Array();
fDesc[0] = "Lost Lands: The Wanderer is a hidden-object puzzle solving adventure game. In this casual game you play as Susan the Warmaide, the main character, getting back in the Lost Lands, where a ghost ship, an evil overlord, an island full of mysteries, and more awaits on her journey into the unknown.
Main features:
- Bonus chapter featuring a different central character.
- Collections, achievements, morphing objects, bonus puzzles
- Wallpapers, concept art, soundtracks and more.
- Strategy Guide included.";
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 = '';
}
}