var fDesc=new Array();
fDesc[1] = "environment to render their ideas with ease and precision. With a modern interface, still friendly and intuitive, Encore offers a comprehensive set of tools for composing, arranging, editing, and printing music.";
fDesc[2] = "percussions. The free version lets you record an unlimited number of MIDI tracks, one Audio track, and two sampled percussions. With the Multi-Track accessory, you can record multiple Audio tracks and sampled percussions. Audio effects include delay, pitch change, volume change, pan, filtering, and reverse. Designed to work with optional accessories such as sheet music printing, piano exercises, ear training exercises, and voice-pitch analysis.";
fDesc[3] = "brings a complete solution for virtual classroom activities and education at distance. You can try this application for a period of 30 days. The minimum amount of students’ licenses available to be purchased is ten.";
fDesc[4] = "solution for virtual classroom activities and education at distance. You can try this application for a period of 30 days. After the period finishes you can either buy a license or uninstall the application.";
fDesc[5] = "to create, render, and print music. Melody Assistant integrates a wide array of tools that will make the process of creating music easier and precise.";
fDesc[6] = "record, edit, playback and print sheet music as well. Compose in either staff or piano roll notation.";
fDesc[7] = "music. The program gets audio from differents sources: microphone, aux and line in inputs, etc. The user can drag and drop audio samples to the timeline window, and the application will adjust it to adapt it to the tempo of the previous recording.";
fDesc[8] = ", preview, exporting and WEB publication of 3D graphics";
fDesc[10] = "huge database of chords you can use in your compositions. Also, you can create your own chords with its intuitive interface. You can edit your composition, as well as play it and print its chords.";
fDesc[11] = "theory and the theory of harmony. The strong theoretical base makes the melody composing process easier.";
fDesc[12] = "By providing a \"pure-visual-and-non-m usical\" interface's design it simplifies work without regard to the user's skill level: the design of the interface refers not so much to professionals as much to newcomers to the art of composing music.";
fDesc[13] = "rules, but an open ended palette of composing modules to powerfully boost your creativity.";
fDesc[14] = "Not a set of canned me-too riffs or rules, but an open ended palette of composing modules to powerfully boost your creativity.";
fDesc[15] = "By providing a \"pure-visual-and-non-m usical\" interface's design it simplifies work without regard to the user's skill level: the design of the interface refers not so much to professionals as much to newcomers to the art of composing music.";
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 = '...';
}
}