var fDesc=new Array();
fDesc[0] = "Cross the world on a map-driven, hidden object quest for the Atlantis’ ‘Diamond Eye’! Join Ella and Steve as they search for medallions in ancient temples, solve puzzling riddles, and complete mini-games to reach the elusive Atlantis and uncover the powerful hidden artifact!
Main features:
- 5 main stages – East, Egypt, Aztecs, Greenland, and Atlantis
- 23 gorgeous crafted scenes, plus loads of mini-games
- 5 unique power-ups
- Map graphic includes plane, icons, and animations
- Strong storyline complete with comics and characters’ hints and messages";
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 = '';
}
}