var fDesc=new Array(); fDesc[0] = "mAz Lite is a 3D maze game. You must find your way to the finish point. This point is the landing pad under a hovering UFO. This is a non violent puzzle game suitable for kids.
You must navigate your way through four maze levels. If you like solving mazes, you'll like this game. It does not need to be installed.

This is one of my first games created using the 3D Game Studio A5 engine. So, it may contain bugs. Since this is freeware, it has no warranties of any kind. Use it at your own risk."; 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 = ''; } }