var fDesc=new Array(); fDesc[0] = "Crossword Puzzle Helper was developed to find words with a certain length when you do not know all the letters. Type in the search word using a wild card (? or /) for each unknown letter and press the "Start" button. All words meeting the search criteria will be displayed in the table. To search for another word, simply enter a new search word and click on the "Start" button. The table will be cleared and the new results will be displayed."; 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 = ''; } }