var fDesc=new Array();
fDesc[1] = "software version also brings polyphony, MIDI management, presets, coupled with other advantages of modern tools - behind the control panel are additional functions: a modulation matrix, an arpeggiator and an independent LFO as well as a stereo chorus and a delay. Functions either as a stand-alone application, or VST, DXi, RTAS, MAS or HTDM instrument.";
fDesc[2] = "ARP2600 V, CS80 V, MiniMOOG V and MOOG Modular V. Then, you can choose which synthesized sound you will like the keyboard to play. You can choose the type of the sound and the characteristics..";
fDesc[4] = ", FruityLoops 3.0, and Orion 2.2). Standalone operation requires a soundcard with DirectSound drivers, and a midi controller. Thanks to an original mixture of FM, AM, additive and substractive synthesis, Rainbow is able to produce a wide assortment of sounds, from analog emulations or synthesized drums to 80's electric pianos or synth basses.";
fDesc[6] = "in the late 60's. Moog Modular V, developed in partnership with Bob Moog, offers endless possibilities for synthesis: 9 oscillators, 3 filter slots, 2 LFOs, 8 envelopes, VCAs, triggers, a sequencer, a filter bank. The program can be used either as stand-alone software or as a VST/DX/MAS/HTDM/RTAS plug-in.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}