var fDesc=new Array();
fDesc[0] = "The digital signal controller LMS244 is a modern loudspeaker system controller designed for a maximum of operational safety.
2 Inputs and 4 Outputs enable its use in 2-way stereo operation or for the driving of 3 to 4-way combinations in mono operation.Furthermore, the LMS244 offers totally unrestricted system configuration possibilities by means of the Microsoft-Windows software supplied with the device.";
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 = '';
}
}