var fDesc=new Array(); fDesc[0] = "ChainMesh is one of many varieties of word puzzles programs. While very simple in nature, its not easy to solve. This program prepares a ChaimMesh puzzle that you can print. Puzzle and the solution are printed on a single page. The puzzle is composed of 35 interlocking 7-letter words. First or last letter of each word must form the first or last letter of another word. Also the first and the last letter of each word must be placed in 16 highlighted 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 = ''; } }