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] = "listen individually to it, anytime, or play the whole composition, adjusting tempo. Useful for music beginners to learn at a personal pace. While playing the composition, notes and lyrics light at the same time music is playing.";
fDesc[3] = "program you can write your own songs, or transcribe existing ones, using the notation editor, that allows you to create notation in a similar way to writing a document in a word processor.";
fDesc[4] = "of choice of instruments or voices. It has music support enabling the user to export or import MIDI files via devices such as keyboards, guitars, etc…";
fDesc[5] = "built-in browser, and convert them to accurate sheet music. Sing along or practice your instrument while following the notes on the screen.";
fDesc[6] = "notes on your computer's screen. The program will show you the notes while the music file is being played. The program will also allow you to download lots of MIDI files from the Internet.";
fDesc[7] = "notes in a very simple way. You will be able to add notes by simply clicking with your mouse. You do not have to be an expert on software or a great musician in order to use this program.";
fDesc[8] = "processor, view it on the screen, hear it, edit it, and print high quality music scores, but keep in mind that music writing is a bit more complicated than text.";
fDesc[9] = ", playback, and edit them with professional results. It not only recognizes every note and chord present in printed scores, but it is also capable of digitizing most handwritten music representations, including accidentals, ornaments, ties, and slurs.";
fDesc[10] = "music sheet with very much precision. Also you can add and change lyrics from MIDI files and it analyzes the MIDI files to display chord names.";
fDesc[11] = "browser, and convert them to accurate sheet music. Sing along or practice your instrument while following the notes on the screen.";
fDesc[12] = "and intuitively. Its versatile input solutions and its extensive functionality cover the needs of both amateur and professional musicians. Its XML-based architecture will allow you to use your Capella scores with other prestigious notation programs such as Finale and Sibelius.";
fDesc[13] = "great. Listen to the song while you follow the notes on your screen. Then edit the notation and the sound of the music.";
fDesc[14] = "the screen. You control the tempo and the volume of each instrument, while Notation Musician turns the pages and repeats practice loops.";
fDesc[15] = "personal compositions, but also to edit and transpose already existing sheet music. Designed for all type of users, it is equally enjoyed by amateur and professional users, offering an intuitive and yet completely full-featured interface.";
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 = '...';
}
}