var fDesc=new Array();
fDesc[0] = "Zombie Edition is a Half Life modification, first person shooter game where you play as a headcrab or zombie. Some will find it interesting, others will get bored but this title will at least make the fans curious to see what it's like to be "on the other side" of the barricade.
Life as a zombie is tough. You often have to eat human flesh just to live otherwise your body rots away and you become a headcrab again. That makes you very vulnerable so you need to find a host. You need to sneak on to somebody, jump and attach to his head. This will result in mutating and getting control of that person.
The idea is simple enough for those familiarized with the Half Life world. The game is free so if you're interested, you can give it a try.";
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 = '';
}
}