var fDesc=new Array();
fDesc[0] = "Playful, computer-generated retellings of ten classic fairy tales will have you rolling on the floor! Every reading is unique and 100% hilarious! Gorgeously presented and illustrated: the beautiful all-graphical main screen lets you pick your favorite story within a lush woodland setting. Ideal for young readers, but give yourself a treat and read along too! Includes Hansel and Gretel, Cinderella, and eight other timeless classics.";
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 = '';
}
}