var fDesc=new Array();
fDesc[0] = "A fun 100 Level Pacman style Game that will keep you entertained for hours.
Main Features:
- This is a fun Pacman type Game for all the Family.
- Dweebs Maze Mania is the funniest game we have developed. You can download the new demo of 6 levels from here on our Website. Passwords are included for every level, to help you.
- If you like pacman type games, then you will love this one.
- There are 100 different levels of good family fun.
- Guide this adorable creature around the mazes with your keyboard or joystick.
- Pick up the Dweebs mints and bonuses. Watch out for those Stompers.
- Pick up the Magic Eye to send those Stompers to sleep. Listen to them snore.
- Not many people can play this game without laughing.
- Once downloaded,please read the info screens, to get the most enjoyment from Dweebs Maze Mania.
- Dweebs Maze Mania has an High Score Table with a Reset Button.
- Includes and Install and Uninstall";
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 = '';
}
}