var fDesc=new Array(); fDesc[0] = "In Zombiepox 1.1 you must convert zombies back to humans by throwing them brains.

The zombies are taking over your hometown and attacking your friends. If a zombie touches a human, that human becomes a zombie.

Your character is dressed in red, and can revert the process by throwing brains into the zombies way. The zombies will grab those brains, and revert to humans again.

You must avoid the inhabitants of your hometown to turn into zombies. You must keep throwing brains to them till there are no zombies left.

You control your character by using the cursor movement keys to walk into the maze, and the SPACE key to throw brains.

But, if a zombie touches you, you will turn into a zombie, too. If there is any brain on the floor, by stepping over it you will become a human again. To make things a bit harder, when you´re a zombie the controls are the exact opposite: should you go forward, you must go back, left is right and so on.

As you progress you get help from your fellow humans in the fight against the zombies."; 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 = ''; } }