var fDesc=new Array(); fDesc[0] = "This software offers a solution for users who want to unscramble a set of Scrabble letters to form usable words. For example, the letters 'T A T U P R E C' will produce 'CAPTURE' and 'CURTATE' if the 7-letter option is selected. The user simply enters a set of letters manually or loads from a file and, using check boxes and can choose to produce words in a variety of lengths (2-8 letters). The unscramble will then produce a list of possible words in the various chosen lengths. The results can be saved as a text or Excel file or copied to the clipboard for pasting. This neat application can be great fun, a helpful Scrabble training method and a useful educational tool."; 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 = ''; } }