var fDesc=new Array();
fDesc[0] = "Help archaeologist Anna break the ancient Pharaoh’s curse! Begin the journey in 1930’s Egypt and travel in time to unravel a mystery leading from Nefertiti to Napoleon! This thrilling adventure game blends classic hidden object with spot the difference gameplay!
Main Features:
-Pick up where the original left off
-Sequel filled with new features and challenges
-Visit exotic locations
-Unique classic-gameplay twist
-Ancient mysteries await";
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 = '';
}
}