var fDesc=new Array(); fDesc[0] = "Wander, a loose remake of an old-school labyrinth game I made back in early 90-s for one of the prehistoric 8-bit home computers.

The goal of each level is to make your way to an exit point while collecting "vitamins", avoiding odd-looking enemies and solving various puzzles.

Find keys and push buttons to unlock doors. Use bombs to destory enemies and to break through some walls. Vitamins work like "experience points" giving you permanent extra lives at the start of a new level."; 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 = ''; } }