var fDesc=new Array();
fDesc[0] = "Have you ever been faced with a Crossword or word puzzle, only to find thatyou just can't get the anagram you know lurks there? Or have you got fourof the seven letters of the solution, but the missing letters evade you?Especially those cryptic British crosswords? Or you'd like help with Scrabble® or other word games?
Well, now help is at hand! I have written WordFind ,a utility that allows you to solve many such puzzles, including:
*
Word lists (includingmissing letters and spell-check)
*
Anagrams
*
Palindromes";
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 = '';
}
}