var fDesc=new Array(); fDesc[0] = "Free Word Generator can generate thousands of possible words using the letters you specify. This can be useful in solving Scrabble and other word games. It is also perfect for children in school trying to expand their vocabulary. Simply enter the characters and this program will show all the word combinations. You can also filter words with using various criteria."; 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 = ''; } }