var fDesc=new Array(); fDesc[0] = "PuzzleJig creates sliding-block puzzles out of any .bmp and .jpeg file, and then lets you solve them. The game is not hard to play. If you get stuck, the program can show you a move. PuzzleJig also tells you how many pieces are in the correct position -- plus it will let you look at the assembled image at any time. You can save unfinished puzzles for later completion."; 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 = ''; } }