var fDesc=new Array(); fDesc[0] = "WinJumble (for Windows) knows 376,000 English words. Type between two and 31 letters, and WinJumble will find all of the single words (not phrases) that can be made by using all of the letters. If you type 'ate' WinJumble will not find 'at' because 'at' does not contain all of the letters."; 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 = ''; } }