var fDesc=new Array(); fDesc[0] = "Fit a set of 5,4 and 3 letter words in a given grid of 15 letters. Three clue letters are given in the grid. You must create and load dictionaries of your choice. A dictionary is a text file containing 3,4 and 5 letter words. A dictionary file can be created using a text editor and must contain enough 3,4,5 letter words to create valid puzzles quickly."; 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 = ''; } }