var fDesc=new Array(); fDesc[0] = "Boatload of Crosswords is a crossword puzzle game. It comes with over 100,000 crossword puzzles and the option to print them, if you prefer to solve them on paper. You can pause and hide a puzzle, so your score isn't penalized for taking a break or save a partially finished game and finish it later."; 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 = ''; } }