var fDesc=new Array();
fDesc[0] = "Facewound is a 2D side scrolling shoot em up.
We're doing some really great stuff, here's a quick list of features:
Pixel shader effects:
-Refracted water reflection
-Water ripples
-Bloom
-Shockwave effects
-Heat wave effects
Specular effects
-Full screen post processing
-Over 20 different weapons
-Tons of different enemies
-Advanced particle system
-2D ragdolls
-Unfunny 'in' jokes
The whole game is 3D accelerated - so will require a Direct3D compatible graphics card. They're bringing the effects and the speed of the 3D gaming world into a 2D side-scrolling zombie murder simulator.";
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 = '';
}
}