var fDesc=new Array();
fDesc[0] = "Prepare yourself for the ride of your life in this fast paced game filled with funny characters and hilarious attractions! There is even a Harmless Hitter gaming mode for kids and first time visitors!
Features
Are you a Harmless Hitter or Super Smasher?
Enjoy 74 levels of shooting and smashing fun
Collect tickets for exciting special attractions
Earn tokens and win great power-ups and trophies
Two crazy gaming modes for double the fun
Get ready for the ride of your life!
Requirements:
• Windows 98/ME/NT/2000/XP/Vista/7
• 1200 MHz CPU or faster
• 256 MB RAM
• DirectX 7 installed";
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 = '';
}
}