var fDesc=new Array();
fDesc[0] = "Edgar Allan Poe’s classic tale gets a reboot in this fourth game in the well-loved Dark Tales series. You and your detective companion Dupin have been summoned to the seashore to help William LeGrand discover the exact location of a treasure lost hundreds of years ago. But LeGrand isn’t the only one with designs on the pirate booty… A masked villain tries to make off with the code, and a mysterious woman in a veil seems to be connected. Follow the clues – with the help of the superior sniffing abilities of your Newfoundland sidekick – to track down the treasure and foil the criminal’s plans.
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 = '';
}
}