var fDesc=new Array();
fDesc[0] = "Color LIFE Sound additionally plays the cell-pattern with 3D-Tone and shows the sound graphic of each generation with it. The area size, the bar and the volume is variably adjustable.
The listener is past-led by means of 3D-Tone at the sounds bumped into in the middle of a virtual area. On this occasion, the location in the depth is derived from the color-index of the cell of the output-picture.
If no cell exists, the listener can remain at his position or move itself into the area-middle, to the front, behind or at an optional position.
With the sound-output, you can select under six output-modes and the sound-bar is put in. Each output-mode normally includes the biggest common rectangle of the generation, can however also be restricted only on the cell-pattern.
Only the visible generation-share is moved after its calculation and output to the Color LIFE Sound window in listener-positions. This is valid also for a cell-diameter smaller than one.";
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 = '';
}
}