var fDesc=new Array();
fDesc[0] = "Help the Special Enquiry Detail crack the case, and catch a criminal. Bring a killer to justice in this captivating Hidden Object investigation.
Play as two detectives investigating a group of serial murders. Follow the evidence while interrogating suspects and studying forensics. Search for helpful items and solve intriguing mini-games.
Download free game today and find the answers hidden within spectacular scenes and deceptive puzzles.";
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 = '';
}
}