var fDesc=new Array(); fDesc[0] = "Creating crossword puzzles is easy using this program. It features a unique ability to make puzzles in fun shapes with over 100 predefined puzzle shapes (diamonds, doughnuts, trains, etc.). You can use the shape creator to build a new shape. It supports creating puzzles up to 49 x 49 in size with a maximum of 200 words per puzzle and up to 150 characters per clue."; 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 = ''; } }