var fDesc=new Array();
fDesc[0] = "Trapped on a faraway planet where the future, past and present all intertwine, Elizabeth and Steve are in serious danger! Plunge into a new and mysterious world of adventure as you travel to the most remote parts of the universe and help them find their way home!
Features:
Fascinating in-game journal holds clues to aid your escape!
Heal Steve with medicinal flora and avoid toxic plant life!
Casual and Expert modes cater to your skill level";
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 = '';
}
}