var fDesc=new Array();
fDesc[2] = "professional audio production. Use Adobe Audition to: - Create your own music - Record and mix a project - Produce a radio spot - Clean up audio for a movie - Compile and edit a soundtrack Whatever you do with audio, Adobe Audition software helps you sound your best.";
fDesc[3] = "one picture you are looking for. Use the picture of a famous movie celebrity, a comic, or the singer of your favourite band, to make the perfect joke, amuse your friends, or just to have a good time while creating some bizarre pictures.";
fDesc[4] = "hardwired input and output. Thus, you can record and process output of almost any audio application by almost any other audio application.";
fDesc[13] = "for communication between musical instruments and computers. Sweet MIDI Player lets you play MIDI files and adjust different MIDI parameters. With this program, you will be able to audition all MIDI files and modify them in a very easy way.";
fDesc[14] = "of using Audition® but one drawback is the numerous files which can be created during a recording session. It is hard to manually identify the unused files and this results in lots of wasted disk space. MediaSweeper© identifies and optionally moves these files to another location for easy deletion or backup. It has been tested on a wide range of Audition® 3 session files and many from version 1.5, 2.0 & Cool Edit Pro® and runs under both Microsoft® XP & Vista. MediaSweeper© caters for multiple session files and prevents accidental deletion of often used file types via user defined filespecs MediaSweeper© identifies the files used within the session as well as all other files that were located in the session file folder as well as the '_Recorded' folder if it exists.";
fDesc[15] = "Categorize and reorganize contents. Search by media properties (duration, bitrate, etc.). Audition media.";
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 = '...';
}
}