var fDesc=new Array(); fDesc[0] = "This program will create an 8-shaped word puzzle for you to print and solve at your leisure. There are 23 interlocking words in 23 squares in the puzzle, each 8-letter long. A word must be placed clock-wise around each square with same overlapping letters with other squares."; 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 = ''; } }