var fDesc=new Array(); fDesc[0] = "In standard Sokoban, you move the Sokoban one cell at a time. Pushing the piece a long way requires boring continuous keypresses. Expert Sokoban is a Sokoban game aimed at advanced players: Pushing a single piece to a given destination cell is considered a trivial enough task that it doesn't add to the value of the gameplay.

You must apply logic for it is a bit of a puzzle at first. You have limited space in which to push the boxes around the maze so you must choose carefully. Like all the best classics, it gets totally addictive! It is easy to while hours away enjoying this simple game. It gets challenging though!"; 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 = ''; } }