var fDesc=new Array();
fDesc[1] = "eye on human photos or green eyes on pictures with animals. You can also denoise low-quality photos made from cameras from digital telephones. You can create СD labels and print them. You can also create slideshows and copy them to discs.";
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] = "music you write can be played by the system on the fly, so you´ll be able to hear the results of your writing instantly.";
fDesc[4] = "built-in browser, and convert them to accurate sheet music. Sing along or practice your instrument while following the notes on the screen.";
fDesc[5] = "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[6] = "according to your needs. It also features a function for creating loops and Karaoke files. The trial version is fully functional during 15 days; after that, you must purchase a license.";
fDesc[7] = "features a beautiful and intuitive user interface that can be used by people of all ages. With its clear, graphical training lessons, you will be able to recognize and read the musical notes without any conscious effort.";
fDesc[8] = "organizations. This innovative software will make things easier for staff/members to search for files, emails, contacts, favorites, history, music, pictures, videos, etc., in their computer, on the Web. Now it is possible to find Lotus Notes items.";
fDesc[9] = "and ASCII, view and play all chords, view and play over 1300 chords, scales, and modes on the neck, tunes an instrument, allows play with a metronome, harmonizes and identifies chords, scales, and modes, and allows play of common multimedia files.";
fDesc[10] = "The software includes an integrated Step Sequencer view which is very advanced. It also has smart MIDI tools where a single tool can be used for multiple editing tasks. The Real-time Drag-Quantize helps in aligning various notes and events with the snap settings.";
fDesc[11] = "? Pizzicato includes a free music course. Are you a professional ? It offers you a lot of smart and quick tools and lets you to create yours.";
fDesc[12] = "more then 125 different instruments. By using this keyboard chord dictionary anyone can learn the chords and their relative finger position and time interval through its user friendly graphical user interface.";
fDesc[13] = "favorite Capella music scores using a variety of display modes, and allows you to search for notes or melodies within the sheet, and to move quickly to a specific system or bar. Besides, its configurable MIDI capabilities will play back any score for you.";
fDesc[14] = "with them via its piano keyboard, harmonica player, karaoke text display, lyrics display and more. With a simple interface even the amateur musician can learn to play music without having any professional training.";
fDesc[15] = "browser, and convert them to accurate sheet music. Sing along or practice your instrument while following the notes on the screen.";
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 = '...';
}
}