var fDesc=new Array();
fDesc[0] = "Mystery of Sargasso Sea is an hidden object puzzle game. While on a yacht trip in the Sargasso, you suddenly find yourself trapped in a fierce storm. Struggling with the elements you've lost consciousness, and when you come to your senses, you see a strange place resembling an island of abandoned ships
Mystery of Sargasso Sea features:
- Over 60 light adventure locations.
- Beautiful graphics.
- Ships of different eras.";
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 = '';
}
}