var fDesc=new Array(); fDesc[0] = "Clever BoxMan is a puzzle game played in 2D graphics mode. It is a logic and strategy puzzle game with a very user-friendly environment presentation. It is very easy to operate and can be played with just a left mouse click. It has various sceneries, nice background music and sounds. Users can switch between given two sceneries and can turn music off and on any time. The game has many maps, and solutions are given for all of them.

Rules for playing the game are very simple. You are a clever box man in this game, whose job is to place all boxes right on their places. You can only push but not pull the boxes around the maze and cannot push more than one box at a time. You can move the box man in two ways. Place your mouse cursor at the place where you want box man to go and then click the left mouse button. You can also use the arrow keys from your keyboard to move the box man. Moving the box man with the mouse is fully automatic and the computer will decide the shortest path for the place where you want box man to go. You can also undo as many steps as you like. This game supports shortcut keys for every menu. You can also create your own maps and you can upload your own solutions. All in all, it is quite a substantial successor of the old classic Sokoban."; 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 = ''; } }