var fDesc=new Array();
fDesc[0] = "Link letters to form words in this exciting new word puzzle game! Bonnie has been running her bookstore for a while – now she wants to write her own books...
Help her write updated, best-selling versions of classic children’s tales by spelling words on the 50 unique levels. Pick up Wildcards and special bonus letters to spell extra-long words – but watch out for Writer’s Blocks – they’ll put your puzzle solving skills to the test!";
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 = '';
}
}