var fDesc=new Array();
fDesc[0] = "Dark Parables: Queen of Sands Collector's Edition is a hidden object game.
Collector's Edition includes:
- Includes an in-depth Strategy Guide.
- Find hidden collectibles and earn achievements.
- Unlock more Dark Parables to read.
- Explore the Art Gallery, Soundtrack and more.
- Bonus chapter featuring the Parable of the Seven Ravens.";
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 = '';
}
}