var fDesc=new Array();
fDesc[0] = "Firebird is not just another synthesizer. It provides a powerful, unique, and innovative synthesis architecture for next-generation sounds never heard before. The innovative user interface allows the creation of impressive custom sounds with a few parameter changes.
437 build-in sounds present a full range of useful workhorse studio standards as well as very special Firebird sounds characterized by multilayered subtle modulations which add new life and dynamics to the sounds.
Main features:
- Excellent value for money
- Very easy to program and easy to use
- A new, unique sounding synthesis: Harmonic content morphing (HCM)
- High-end sound quality: Warm, analog, transparent
- 437 hand picked presets included, over 1000 sounds available
- 84 oscillator types containing 18,000 morphable waveforms
- 38 different analogue modeled filter types
- True stereo mode, 4x unison mode, and up to 8 oscillators per voice
- Can sound like other synthesis methods - additive, subtractive, AM, FM, phase distortion, supersaw, vocoder, sync
- Can sound like natural instruments like piano, brass, organs...
- 23 spectral manipulations or “modifiers” can be applied to the oscillators
- IQM - intelligent micro tuning for cleaner chords
- 21 arpeggiator types
- 13 effect types
- Skinable user interface";
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 = '';
}
}