var fDesc=new Array();
fDesc[1] = "using your PC keyboard or mouse without the requirement of a conventional Piano.";
fDesc[2] = "and helps the user greatly in synchronizing the music. It is basically a top-end audio engine, which unveils a wide variety of sounds right from deep and delicate crystalline leads down to rocking leads and brutal basses.";
fDesc[3] = "scenario. The tool is MIDI-sync-able, featuring 2 oscillators per voice, choice of pulse, triangle and saw-tooth waveforms, along with oscillator detune and synchronization options.";
fDesc[4] = ", but they have made it even better by including their latest technology. ReFX has obviously spent a lot of man hours programming the synthesis functions as the end result is a combination of warm and rich sounding synthesizer beat and tempo.";
fDesc[5] = "be used as a conversion tool. It will help you to convert audio files from one format into another. Many audio formats are supported by this software.";
fDesc[6] = "its use so that everyone can have fun with it. The reason that the PoiZone program is simple to use is that it contains only the controls that are necessary.";
fDesc[7] = "speech. Developers defined its main purpose as helping children to learn English vocabulary. Speech Synthesizer 5.0 doesn’t need a lot of system resources and can be used on any of the following Windows based Operating Systems: Windows 98, Windows Me, Windows NT, Windows 2000 and Windows XP.";
fDesc[8] = "have independent shape and volume controls. The first oscillator features pulse width modulation along with symmetry controls. There are two multimode filter modules below the oscillators.";
fDesc[9] = "1970’s synthesizer, providing users with the opportunity to experience this synthesizer’s unique sounds through a new technological version. The Yamaha CS-80 was considered by many in the music industry to be the ultimate synthesizer in the 1970’s";
fDesc[10] = "provides users with an advance sequencer with dynamic effects and a Galaxy module of combined LFOs. An authentic recreation of the Roland Jupiter 8, the Jupiter-8V 1.1 virtual version features over 400 presets with up to 32 voices of polyphony";
fDesc[11] = ", which will help you to combine many various synthesis methods together. Some of the various methods that are included with the plug-in are; ring, amplitude, frequency/phase and pulse/width modulation. Also included are additive and subtractive synthesis, osc sync and waveshaping.";
fDesc[12] = "hosted by users music editing studios enabling them to produce high quality sounds. Users are presented with a contemporary styled graphic interface that is easy to use.";
fDesc[13] = "including “spectrum synthesis”. Users will benefit from this new versions improvements which include a “free running” envelope mode and a stereo mode to its Distortion Effect feature.";
fDesc[14] = "English, then hear the voice synthesizer ‘sing’ them by playing the melody on their MIDI keyboards. It can be used as a stand-alone program or with a host program.";
fDesc[15] = "with the computer keyboard or with the mouse, and driven by a sequencer or by a MIDI player.";
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 = '...';
}
}