var fDesc=new Array();
fDesc[0] = "Dive into Haunted Manor: Queen of Death and save your sister before it’s too late! Find a powerful amulet to stop an ancient evil in this amazing Hidden Object Puzzle Adventure game. After receiving a mysterious letter, you return home to find that your family has been murdered. The only survivor is your sister, Stella, who now needs you to save her! Concoct a powerful elixir to save Stella and then confront the Queen of Death!
The Collector’s Edition includes:
- Bonus gameplay
- Integrated Strategy Guide
- Wonderful wallpapers";
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 = '';
}
}