var fDesc=new Array(); fDesc[0] = "This is a variation on the game Pacman. You need to guide Pac-Man around a maze and eat all of the dots on the board in order to procede on to the next round. Numerous, multi-colored ghosts also roam the maze trying to stop you. If you eat one of the power pellets in the maze, the ghosts will temporarily turn blue and run from you. Pac-man can earn bonus points by eating the ghosts when they are in this state. The maze is now in 3-D and is larger than screen which will scroll to follow the action. To help get out of tight spots, Pac-Man now has the ability to jump. But be careful, because some of the ghosts have learned this trick as well and you could end up in a mid air collision!

The game features nice, colorful graphics done in a nice 3-D fashion. The blocks in Block Town are nice and look just like Legos. Pac-Man actually has eyes and the ghosts are also nicely done. Anyway, the graphics are just what you'd want them to be: great, but not overly flashy."; 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 = ''; } }