var fDesc=new Array(); fDesc[0] = "Jumble Key definitively solves Word Jumble puzzles and Crossword puzzles. It is a powerful program, yet is quick, easy to use, and a lot of fun. Given a letter pattern, it checks all possible letter combinations with its built in dictionary and returns all valid words that it finds. If you are trying to solve or create these kinds of word puzzles, or any other related word problems, then this program will be an invaluable resource for you. We hope you enjoy using it!"; 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 = ''; } }