var fDesc=new Array(); fDesc[0] = "B-Puzzle is the electronic version of the classic sliding puzzle game. B-Puzzle allows you to create and play sliding puzzles with your own pictures. The game is not as easy as it looks because there are some unmovable pieces which limit your movements. The random position of the empty piece will also make the game more difficult.
B-Puzzle features three levels of difficulty, best times record, load and save the game, resizable pictures, nice sample pictures, cool MIDI music, and more."; 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 = ''; } }