var fDesc=new Array();
fDesc[0] = "Stray Souls Stolen Memories is a hidden object game in which you will have to guide a mother who pursues a terrifying apparition into a twisted reality to save her daughter. As you explore a strange town in which an evil clown has turned all of the residents into wooden dolls, you'll slowly peel back the layers of a disturbing story that reveals why the mother's husband has never spoken about his past.";
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 = '';
}
}