var fDesc=new Array();
fDesc[1] = "capturing the audio microphones for acoustic instruments, and by input line for electric instruments. The use of this application is very simple and you will take advantage of it immediately.";
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] = "and add more VST audio and instrument effects to their Cakewalk studio software or any Direct X compatible application.";
fDesc[5] = "software and will provide them with high quality virtual string instruments, a drum set, bass guitar, and electric piano. With this software installed, users can build sections for their songs, practice, or jam.";
fDesc[6] = "providing them with an extensive library collection of percussion instrument sounds, samples and midi files, for their studios. The EZXPercussion 1.0 uses Teentalk Percussive Compression and the recorded sounds in this library add-on of different sizes of instruments";
fDesc[7] = "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[8] = "providing them with a library collection of over 10,000 samples including midi files for their studios. The EZXNashville 1.0 uses Toontalk Percussive Compression and the sound recorded in this library of sticks";
fDesc[9] = "can tune guitar, banjo, violin, and many other instruments. Has choice of gauge and pitch graph views.";
fDesc[10] = "instrument's arm, highlighting the string you want to tune; a dial shows if the user must increase or decrease the tension of the string to reach the appropriate tone. The user can introduce the sound to the computer using a microphone or directly (electrical instrument).";
fDesc[11] = "and hight precision; it supports more than 30 different 'temperaments', historic as well as modern.";
fDesc[12] = "require an additional sequencing program. The V-STACK virtual instrument rack is perfect for those needing a program for live use on a stage or if it just intended as an extension for existing VST system link networks without needing more sequencers.";
fDesc[13] = "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[14] = "FSX and FS2004 program users that provides them with GPS Navigation and flight planning, and an Auto Pilot controller. The Abacus CoPilot Pro 4.0 features global integrated maps covering airports and geo-political boundaries that includes a zoom function.";
fDesc[15] = "the microphone or a cable, and will suggest you how to tune the instrument in order to play the notes in the right way.";
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 = '...';
}
}