var fDesc=new Array();
fDesc[0] = "Dr. Hoo needs your help! The library at Word U is overrun with letters. Swap letters to spell words. Build longer words for special Gemstone and Bomb tiles. Play at your own pace in the turn-based Classic Mode or race the clock in the fast-paced Action Mode. Prove your word spelling prowess by unlocking trophies and competing for the top high score. Enroll at Word U and play this addictive word puzzle game!
Features:
-Relaxing turn-based gameplay in Classic Mode
-Fast-paced gameplay in Action Mode
-30 Unlockable Trophies";
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 = '';
}
}