var fDesc=new Array(); fDesc[0] = "Enchanting word game for one to four children that's played along the same lines as the popular word game Hangman. The object is to guess the word before you melt the snowman.
You choose your letters from the colorful arrangement hanging from the clothesline, with sound effects to accompany the placement of the letters. Hints are available, and you can choose up to 10 wrong letters before the round is over."; 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 = ''; } }