var fDesc=new Array(); fDesc[0] = "Wordsearch Generator allows you to create word puzzles consisting of seemingly random letters arranged in a rectangle grid. Its size can be 5x5, 10x10, 15x15, 20x20, 25x25, 30x30, 35x35, 40x40, 45x45, and 50x50. You can arrange words vertically, diagonally, and backwards; you can also select whether your puzzle will be upper or lower case. There are 3 puzzle modes: Word, Question, and Snake mode. You can add words manually or create and save a list of words to create a puzzle. Each mode contains some examples of puzzles, but you can create your own list of words. Either selecting an example from the list or creating a new one, you add words or sentences to your puzzle. You can choose the number of words/questions to add to your wordsearch, choose the length of words you want to use (e.g. between 2 and 10 characters), and select the font size. Once you have added the desired words, you can fill the empty spaces with random characters and check for banned words.

Minimum system requirements: 500Mhz processor, 128Mb RAM, Windows 98, 98SE, Me, 2000, XP, XP64, Vista x86 or Vista x64, .net framework 2.0."; 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 = ''; } }