var fDesc=new Array(); fDesc[0] = "The fun of the game is to solve a jigsaw puzzle while listening to nice music. There are several picture sets and a varying number of pieces for you to select. Pieces may have queer shapes rotated to any angle so it's not as easy as it looks.

Why a computer jigsaw puzzle is better than its cardboard analog:

" No guesswork - once a piece is dragged to another piece you hear a characteristic click of a match;
" When drained out of hope to match the unmatchable you can launch the automatic assembly mode to see the pieces floating to each other and interfacing to form a complete picture
" Any moment you can stop the automatic assembly line to make the rest be processed by your brain
" By one button-touch you reshuffle the pieces to enjoy it again
" The last but not least is a one button-touch get-out-of-sight for the sake of your boss's peace of mind"; 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 = ''; } }