var fDesc=new Array();
fDesc[0] = "After a new fall, you wake up in a Victorian house. A letter briefs you for a new mission.
In the previous two chapters, you made it through some strange adventures. First, you were a temple explorer, and then you were a secret agent in a cold building. Each time you woke up in a new place on a mission that was unrelated to the previous one. You solved many enigmas that helped you get some of your memory back. You wake up this time in a Victorian house and a letter from the lady of the house urges you to take care of her husband... Can you face the new challenges, find answers, and come to a revelation?";
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 = '';
}
}