var fDesc=new Array();
fDesc[0] = "'The broken clues' is a hidden object game where players can play the role of Mr. Matthews, who is an FBI agent detecting the murder of Mr. Harrison.
Main features:
- Involves both hidden object and role play game
- Feel the lively animations with thriller – movie effect of Dark & Mysterious theme of the game
- Progressive game-action with interesting storyline and improvised screens
- Efficacious graphics and zero-dead-lock game action";
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 = '';
}
}