var fDesc=new Array();
fDesc[0] = "In a science experiment gone terribly wrong, 10 spiders became super-intelligent and now have invaded your home and they're making a huge mess...
In WordWeb Deluxe link letters and create words to sweep the spider webs away! Earn tokens, and use the Letter-Pool to spell your own words! Spell words over bonus tiles like diamonds, rubies and emeralds to earn more points and earn bonus power-ups to get rid of those pesky cobwebs. But watch out for the spiders… they’ll try to wrap you up in a cocoon!
WordWeb Deluxe is challenging, addictive and, above all, very fun.";
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 = '';
}
}