var fDesc=new Array();
fDesc[1] = "artists. It contains many features that make it easier to create music, like chord diagrams, fretboard and keyboard interfaces and tablatures. It is ideal for beginners as well as for professional musicians.";
fDesc[2] = "It includes all the necessary tools like Tab Symbols, Musical Symbols, Rhythm Slashes, chord names and many more for making it easy to create and edit music files.";
fDesc[3] = "sound, such as your favorite song, a soundtrack from your favorite movie, your friends' voices, your kids laugh, your cat , etc.";
fDesc[4] = "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[5] = "of quality ringtones is touching sky limits. But user has been burning their pockets for such ringtones. Ringtone Converter / Ringtone Composer come as a savior to the pockets of such enthusiasts’ users.";
fDesc[6] = "previewed in Silverlight 2. The new Deep Zoom technology in Silverlight allows users to see images on the Web like they never have before. The smooth in-place zooming and panning that Deep Zoom allows is a true advancement and raises the bar on what image viewing should be. High resolution images need to be prepared for use with Deep Zoom and this tool allows the user to create Deep Zoom composition files that control the zooming experience and then export all the necessary files for deployment with Silverlight 2.";
fDesc[7] = ", can play on virtual instruments and percussion sets, records her/his own voice, combines the different parts as blocks to be aligned and applies multiple effects to the timeline.";
fDesc[8] = "created by users of the NoteWorthy Composer program, including files created or last saved by version 2. You can even get free .nwc files from Internet and use them with this free viewer.";
fDesc[9] = "as well as MIDI files. As MIDI device NoteWorthy Player uses MIDI Mapper provided by Microsoft Corp. It is a free program with user-friendly and inelaborate interface and easy functions.";
fDesc[10] = "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[11] = "create music. Kids enjoy recording their own vocals; and be creative in their own way.";
fDesc[12] = "generate panoramic pictures from independent photographs taken in sequence with a regular digital camera. It stitches all the pictures, overlapping the necessary edges to obtain the resulting panorama picture.";
fDesc[13] = "choice. Various sounds can be created with just one sample. Composed song can be export as a WAV file.";
fDesc[14] = "into a microphone and transforms it into MIDI score. The score can be edited in a built-in editor.";
fDesc[15] = "scenes from your favorite videos. Scene Composer is able to edit MPEG-2 or VOB files. The program allows you to delete individual frames, or entire sequences between two marks. You will be able to set those marks by hand, or at a given time lapse.";
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 = '...';
}
}