var fDesc=new Array();
fDesc[0] = "DMX 6fire 24/96 ControlPanel is an intuitive software mixer in which streamlined function, not graphical gimmicks, predominates.
You can have total control of the audio interface, reduce volumes, route inputs to any output, set the Master Clock values or toggle the analogue inputs 3/4 between PHONO and LINE.
Features :
- Professional Soundsystem for USB 2.0
- Black metal housing
- High End Sound (24 Bit/192 kHz)";
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 = '';
}
}