var fDesc=new Array();
fDesc[0] = "Whispered Secrets: Song of Sorrow is a hidden object adventure game. After surviving a shipwreck, you think all of your troubles are behind you. That is until you discover the local townspeople are under the influence of a mystical force's song. You must uncover the Siren's secrets before it's too late.
Collector's Edition features a bonus chapter where you can learn more about the sirens. You get collectible gems in every scene that can unlock bonus story content. It also comes with behind-the-scenes concept art, mini-games, etc.";
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 = '';
}
}