var fDesc=new Array();
fDesc[0] = "Rose sees dead people. Unfortunately her visions have landed her in an asylum. You must help Rose to use her psychic powers and ghostly visions to solve a series of grisly murders and thwart the plans of an evil doctor in this pulse-pounding Hidden Object game. Warning: Redrum ™ is an intense psychological murder mystery intended for mature audiences.
* Intense psychological thriller
* Darkly surreal graphics
* Solve ghastly murders!";
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 = '';
}
}