var fDesc=new Array();
fDesc[0] = "Species: Artificial Life, Real Evolution is a scientifically-accurate natural-selection video game. It allows you to experience evolution first-hand, simulated from the very first principles of evolutionary science:
- Variation (every creature is uniquely defined by its genes)
- Mutation (child creatures are randomly modified versions of their parents), and
- Natural Selection (the environment affects every creature in their struggle to survive).";
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 = '';
}
}