var fDesc=new Array();
fDesc[0] = "TAL-U-NO-LX is a complete rewritten emulation of the popular hardware with a new engine and GUI.
TAL-U-NO-LX features: self resonating zero feedback delay filter (24dB LP); filter range up to ~40kHz (depends on the sample rate); calibrated and tuned after TAL's hardware device; midi learn / automation for all controlls.";
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 = '';
}
}