var fDesc=new Array();
fDesc[0] = "Track down your missing twin in Haunted Hotel: Charles Dexter Ward. The only trace of your missing twin is the necklace he never took off…and a swampland address. Follow the clues to an abandoned hotel and unravel a mystery of necromancy and more in this eerie hidden-object puzzle adventure classic!
This is a special Collector's Edition release full of exclusive extras you won’t find in the standard version.";
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 = '';
}
}