var fDesc=new Array();
fDesc[0] = "Climb aboard an ancient Spanish galleon lost in time as a Coast Guard officer tracking an elusive criminal in Mayan Prophecies: Ship of Spirits. As you explore the vastness of a ship lost in time, what mysteries will you uncover amidst its Mayan idols, menacing sea creatures, and exotic treasures? Find out in this exciting new hidden-object puzzle adventure game on the open seas!
The Collector’s Edition includes: bonus gameplay chapter, unlockable mini-games, integrated strategy guide, unique CE achievements, concept art, and more!";
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 = '';
}
}