var fDesc=new Array();
fDesc[0] = "Color LIFE illustrates the reproduction behavior of microorganism. The reproduction rules can be free selected likewise the incremental width and output time of the generations. Color-palettes can be produced on your own. With a shape-run, new rules and nice graphics can be found.
Color LIFE Sound plays the cell pattern with a 3D-Tone and shows the sound graphics of each generation with it. To this can be selected 24 sounds from four different sound themes in each case. The area-size, the bar and the volume is variably adjustable. Universal settings can be saved as file.";
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 = '';
}
}