var fDesc=new Array();
fDesc[0] = "A father’s frantic plea sends you in search of his daughter, Maria, who seems to have vanished into thin air. A mysterious and supernatural force has kidnapped her on her 16th birthday, sealing her room with a magical glow. Your investigation leads you from an odd, flower-shaped lamp through a portal - an ordinary room becomes a nightmarish forest.";
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 = '';
}
}