var fDesc=new Array();
fDesc[0] = "ReDominator is an emulation of the classic Alpha Juno 1/2 (JU-1/2), a polyphonic DCO (digitally controlled oscillator) based synth. It contains a high quality 24dB/octave lowpass filter with a warmth control (VCA level) and 14 different harmonically rich waveforms including a unique PWM-sawtooth. Also, it features a unique 8 parameter envelope which enables much more complicated and expressive sounds than a standard ADSR.
Features:
- Accurate emulation of the Alpha Juno 1/2 including the famous Hoover patch.
- 14 different low aliasing waveforms including a unique PWM-sawtooth.
- High quality full range 24dB/octave low-pass filter.
- Unique 8 parameter envelope generator which enables much more complicated and expressive sounds than a standard ADSR.
- 200 bundled patches (of which many are sysex converted from our own JU-2).
- Patch importer which allows importing sysex patches from your own Alpha Juno and play them in ReDominator.
- Chord Memory function (VST/AU version only).";
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 = '';
}
}