var fDesc=new Array(); fDesc[0] = "ChromaSOUND is a general-purpose audio DSP program, that provides the following features :

- SSB "denoise", for reducing static on SSB signals
- Automatic notch filter, for removing tones, heterodynes, and those pesky carriers
- Bandpass, Low-Pass, High-Pass, and Band-stop (manual notch) filters
- User-defined filters, using the built-in Graphical Filter Designer. Just drag your filter from the design window to an empty button!
- Selection of pre-defined filters,
- AGC, or Automatic Gain Control for operation under varying conditions"; 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 = ''; } }