var fDesc=new Array();
fDesc[1] = "record and play multiple tracks of audio and MIDI virtual instruments at the same time. You can the add effects like reverb, delay, guitar amp simulator, flanger or some third party effects.";
fDesc[2] = "you to mix multiple audio tracks together quickly and easily, and also record your own audio tracks using its high quality audio recorder.";
fDesc[4] = "processing. It provides you with all you need to record, mix and edit your own music in professional quality. Using the loops you can create license music. Acid Music Studio 7 is ideal for anyone who's ever thought about producing music.";
fDesc[5] = "ringtones and easily send them to your phone. This incredible program enables you to create your own ringtones and includes over 450 ringtones and more than 200 photos, videos, and logos.";
fDesc[7] = "half-professional program for music creation and MIDI-keyboard. It is perfect complete package for stunning songs, experimental beats and exciting soundtracks. The Premium version offers extra features, more sounds, effects and functions. It contains up to 3,500 professional sounds.";
fDesc[8] = "exact BPM (beats per minute) of any song.";
fDesc[12] = "it’s very powerful and can help professionals in so many ways. It’s a tool where anyone can create and mix his own tracks. Voice recording facility is also available with this software so any singer can edit the track and remove vocals from it and record his own voice.";
fDesc[13] = "software allows multiple tracks editing and remixing. The loop browser has a wide selection of effects like bass, brass, drum, guitar, etc. The master selection helps in the selection of tempo and snap.";
fDesc[14] = "allows multiple tracks editing and remixing. The loop browser has a wide selection of effects like bass, beats, FX, guitar, keys, vocals etc. The master selection helps in the selection of tempo and snap.";
fDesc[15] = "whole decade. Excellent drawings and funny sounds will give you an opportunity to enjoy it as much as you can.";
fDesc[16] = "own mixes and remixes. This program has a very user-friendly interface, all the buttons which are required for sound remixing are presented at the front panel. The program supports only MP3 and WAV formats.";
fDesc[17] = "and video samples come supplied. In the Arranger, samples and videos can simply be dragged onto the track, looped, enhanced with effects, and modified for export. There are various synthesizer plug-ins for creating your own sounds.";
fDesc[18] = "different games such as Perplex, Puzzlic, Atomic and Clone. The new games will be added in the future.";
fDesc[19] = "original music, record your band, create a podcast, or remix a song.";
fDesc[20] = "such as video remix, digital signage, and mobile video. Features: Remix raw video with your video and picture library. Download video from Internet or LAN as a channel. Select video or pictures in a play list for animation slideshow. Composite broadcasting video with background in green screen. Multiple monitor support for screen wall etc";
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 = '...';
}
}