var fDesc=new Array(); fDesc[0] = "The Free Word Search Puzzle Maker is a simple, easy to use software, compatible with Windows XP, Vista, 7 and, of course, Windows 8.

It is divided into three sections: Words, Words Search and Help. The first one, Words, allows you to introduce up to 21 words in a table, and these will be used to generate the puzzle. The second section, Words Search, displays a 15x15 grid of letters, which contains the words that you introduced in the first section. The rest of the grid is filled with random letters, so there is a very large pool of boards to randomly choose from.

You cannot select the letters in the generated puzzle, but the second section allows you to save the current grid as a picture (which is black and white and contains only the desired puzzle), or even print it if you want to. Additional advice are given in the help section, where you can find out that you can generate a new game with as little as two words."; 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 = ''; } }