var fDesc=new Array();
fDesc[0] = "MediaSweeper© is a utility to identify and manage unused files from your Adobe Audition® sessions.
We know the benefits 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.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}