var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to solve an easy puzzle game. The user can load any picture and the software divides it into fifteen blocks. The player then tries to rearrange the blocks to complete the original picture, using the least amount of moves possible. The game keeps a record of time taken and the number of moves, and keeps a list of the top 5 high scores."; 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 = ''; } }