var fDesc=new Array();
fDesc[1] = "tempo-matching technology is second-to-none, and its straightforward pick, paint, and play functionality has helped make ACID Pro software the favorite loop-based music creation tool for millions of users worldwide. Now reformulated to add multitrack recording and full MIDI sequencing to its superior looping functionality, ACID Pro 6 software delivers a new formula for ground-breaking music creation: loops + multitrack + MIDI. Together, these key components add up to a full-featured professional music workstation unlike any other.";
fDesc[2] = "easy to use. There are not much confusing stuff that only professional audio editors need. We can easily record audio from any input source like microphone. The memory requirements are less and the program is quite fast in encoding and decoding. noise reduction, audio enhancements are features.";
fDesc[3] = "applications and lots more, without even knowing bare basics of programming. It comes with many impressive features facilitating the user to create small size stand alone apps, such as games, installation programs and similar things without spending lot of time.";
fDesc[4] = "files or audio cd's showing you a two decks interface. You can load different songs in each deck (using any of the supported formats), then mix the sounds and save the result in WAV, OGG or MP3 format.";
fDesc[5] = "Hollywood-style DVDs from your home movies and slideshows. Easily transfer and edit home recorded movies, create compelling motion slideshows, edit standard and high definition projects, even upload them to portable devices, all with professional-level production values.";
fDesc[6] = "in creating creative mixes. The software features time stretching and reconfiguration that is similar to digital audio workstation. It has an eight measure intelligent looping.";
fDesc[7] = "miss the beginning of a song ever again! Recorded tracks can be faded in and out and saved as ASF, MP3, OGG or WAV.";
fDesc[8] = "music,loop-repeat selected video parts, play movies to match user defined duration, take movie snapshots. Supports all common video formats.";
fDesc[9] = "to define the shape to be molded into. Several pairs of such outlines can be drawn anywhere on the main image, and the distortion of each pair then animated together to give complex motion. Any kind of image can be distorted and animated - particularly text, logos, and photographs of people etc. Animation effects include continuous flowing motion, bouncing, rotation, and simple to-and-fro motion - all of which can be applied to any sort of distortion and looping that you can come up with.";
fDesc[10] = "or with overlapping edges under date/time. The product also allows level triggered vox recording for monitoring rooms or phone calls.";
fDesc[11] = "make outstanding and diverse sounds for use in multimedia and application development. An astounding number of powerful effects enables musicians and developers to bring their sounds to life. All effects may be customised with presets and advanced parameter variations, including powerful vector envelopes which allow control of how any part of an effect changes over time. Take sound editing to a new level with true frequency editing, which enables edits and effects to be applied to any selected frequency band by simply selecting the frequencies on a spectrogram. An enormous suite of editing features is available, including manual waveform editing and interpolation, plus advanced regions and looping alongside a powerful crossfader for those really difficult loops. Soundprobe boasts four fast-rendering visualisation graphs, including spectrograms, a uniquely combined time and frequency...";
fDesc[13] = "computer with exceptional ease and accuracy. Play back up to 64 tracks of music with independent track looping. The program's wealth of powerful features, combined with its easy-to-use interface, have set the standard for MIDI recording with professional musicians, amateurs, and multimedia producers alike";
fDesc[14] = "all the puzzles in a pack, then solve the mystery. 100 mysteries - easy to expert. Also, make your own logic puzzles from YOUR photos.";
fDesc[15] = "samples. Quick and convenient wav browser.";
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 = '...';
}
}