var fDesc=new Array();
fDesc[0] = "Punch `n` crunch is a Fun Boxing Action game introducing the unique copyrighted GDC2 control. Punch `n`crunch offers a variety of 7 characters to choose from - the wackiest ones you`ve ever seen - lots of attack animations, which can be combined into Multi-Hit Combos.
In Singleplayer Mode you have the opportunity to select one opponent directly!
In Championship Mode you've got fight your way to the top. A big challenge!
In Groove`n`Move Mode you'll learn your punches grooving to the rhythm of the music! Your speed is shown on the Groove`o`Meter!
Main features:
-downloadable characters,
-pressure sensitivity which influences the toughness of your punches,
-the unique Groove`n`Move mode,
-the Recover`o`Meter";
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 = '';
}
}