var fDesc=new Array();
fDesc[0] = "Travel across the globe and explore various locations. Raise your skill level and gain experience to unlock more areas on the interactive map. Various anomalies and natural disasters diversify the gameplay but don’t despair – all kinds of power-ups will help you cope with any trouble you encounter.
Main Features:
- Complete fun tasks
- Experience diverse hidden object gameplay
- Discover interesting facts about the outstanding personalities
- Visit Cleopatra's and Einstein's casinos";
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 = '';
}
}