var fDesc=new Array();
fDesc[0] = "Travel from the Dark Middle Ages to the present to save the inhabitants of the Orion kingdom in Echoes of the Past - The Citadels of Time! After trapping you in a time limbo, you must use your Hidden Object Puzzle Adventure talents to escape from the spells of a powerful witch. The fate of the kingdom is in your hands.
Main features:
- Incredible gameplay
- Fantastic graphics";
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 = '';
}
}