var fDesc=new Array();
fDesc[0] = "Hell Fighter 32 is the networked version of Hell Fighter. The new interface is multiplayer centric.
Hell Fighter is a fast action game, and you'll want a good connection like DSL or cable. It's playable on a 56k modem, but (as with other fast action games) your controls will be sluggish.
You can still play by yourself just as if it were a single player game, but others can connect and join you.";
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 = '';
}
}