var fDesc=new Array();
fDesc[0] = "Weird Helmet is a fast-paced maze puzzler that challenges you to best that highest score or surpass the highest level! Help Weird Helmet find a safe path across the void while gathering as many bonus items as possible before his air supply runs out!
Main features:
-Unlimited Levels of Play!
-Play in Standard Mode or Expert Mode!
-Saves your highest score and highest level!
-Hungry gremlins, crazed cheerleaders, teleporting wisps and deep space fog increase the challenge with every level!
-Gather coins, stars, and other bonuses to score points and earn useful items to help get Weird Helmet across the void";
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 = '';
}
}