var fDesc=new Array();
fDesc[0] = "Shortly after moving into a creepy mansion in Louisiana, Sara Lawson is struck with tragedy when her husband mysteriously disappears. Sara’s daughter, Magnolia, believes her father was kidnapped by the ghost of a vengeful pirate seeking to protect his lost fortune. With the locals terrified of the pirate’s curse, you are the family’s last hope. Only a Master Detective with incredible hidden-object skills can locate Marcus Lawson in Mystery Case Files: 13th Skull!
The Collector's Edition release contains exclusive extras not found 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 = '';
}
}