var fDesc=new Array();
fDesc[0] = "Reflections of Life: Dark Architect Collector's Edition is a hidden object game.
The fate of the worlds is uncertain now that a mysterious evil being and his monsters and spies are bent on destruction.
With the help of your trusty owl companion, not to mention the powers of a magical amulet, it's up to you to discover the truth.
Do you have what it takes to stop the villain before it's too late?
Find out as you uncover a traitorous scheme, solving loads of silhouette, interactive, riddle, and other hidden-object scenes and special pop-up book-style mini-games.";
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 = '';
}
}