var fDesc=new Array();
fDesc[0] = "Claire and her team are in trouble again. Their airplane flew into a terrible storm and crashed on an uninhabited island in the middle of the ocean. When they woke up, our heroes went out in search of help. After wandering a while, Claire found a village of Atlanteans and offered to help them get their homeland back, and to teach the wicked ruler of the underwater world a lesson.
Go on an unforgettable adventure to restore Atlantis and defeat the villain!";
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 = '';
}
}