var fDesc=new Array();
fDesc[0] = "Grim Tales: The Final Suspect Collector's Edition is a hidden object game.
The Collector's Edition includes:
- Visit the past and change a family's destiny in the bonus game.
- Create a potion to release the Foster family from the witch’s power.
- Find morphing objects and other collectibles throughout the game.
- Earn achievement awards for your excellent game play.
- Use the integrated Strategy Guide.";
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 = '';
}
}