var fDesc=new Array();
fDesc[0] = "Meet the ancient Egyptian cult in a search of almighty artifact, Marcus Antonius, King Arthur and many others who tried to kept this omni-powerful object hidden away from those who wanted to use its terrible powers for conquering the world and stop the evil from raising from its grave!
- Lead a young detective and confront the ancient Egyptian cult
- Meet King Arthur, Cleopatra, Marcus Antonius and other historical characters
- Explore the mystical old castle and over 50 other locations
- Search the underworld and discover the supernatural.";
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 = '';
}
}