var fDesc=new Array();
fDesc[0] = "This game is an entertaining extension of the famous Conway's Game of Life: rival swarms of virtual germs wage a war against each other to the death, and you takes part in this battle as a commander of your own army of "germs". The behavior of the living armies is highly amusing and unpredictable. A game challenge is whether you can retain control over all this chaos in real time.";
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 = '';
}
}