var fDesc=new Array();
fDesc[0] = "Dark Parables: Ballad of Rapunzel is a hidden object game. You’ve been called to the kingdom of Floralia to track down the source of a mysterious pollen spreading throughout the world. Rumor has it that Princess Rapunzel is somehow involved; the haunting melody she sings appears to summon the pollen. But how did the once-loved princess come to control such a deadly force? Only you can solve this mystery.
The Collector’s Edition includes additional bonus games, concept arts, wallpapers, and more.";
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 = '';
}
}