var fDesc=new Array(); fDesc[0] = "Spoonbill Word Target is a game of anagrams. A 9-letter word is chosen at random from the dictionary, its letters scrambled and presented in a 3 by 3 grid. The central letter is referred to as the Target letter and must be included in every word you make. Your target is to make as many words of 4 letters or more from the letters in the Target grid. Verb forms ending in S and plurals ending in S are not allowed. Proper names are not allowed. Foreign words are not allowed unless they have been adopted into the English language. You must, of course, have at least one 9-letter word in your list."; 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 = ''; } }