var fDesc=new Array();
fDesc[0] = "Jack Haniken and his friend Elizabeth have gotten themselves in a dangerous situation and it’s up to you to save them! After discovering the whereabouts of a sunken treasure, Jack sets off to find the fortune but soon goes missing. Help Natasha and Professor Thompson track Jack down in Mystery of the Missing Brigantine, a fun Hidden Object Puzzle Adventure game!
Amazing gameplay
Incredible action
Save Jack and Elizabeth!";
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 = '';
}
}