var fDesc=new Array();
fDesc[0] = "With her deadline looming, a romance author escapes to Eastern Europe with the hope that a trip to Transylvania can provide the inspiration she needs to rewrite her latest book.
But soon her discovery of a Victorian-era love triangle provides much more than a new storyline: it provides an entire novel’s worth! Reunite the long lost lovers in the afterlife in The Stroke of Midnight, a fun Hidden Object game.";
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 = '';
}
}