var fDesc=new Array();
fDesc[0] = "It's 1950's New York! A rich lawyer's widow has been brutally murdered. What starts as a routine investigation quickly takes a dark turn. It's up to you to shed light on the secrets of the past. Are you brave enough to take on this chilling adventure?
Collector's edition comes with a bonus chapter where you return to the bunker to find more artifacts and save the world.";
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 = '';
}
}