var fDesc=new Array();
fDesc[0] = "BIAS SoundSoap is a pro-quality noise reduction solution that is also easy enough for average consumers to use effectively.
With just a few simple controls, anyone can remove unwanted hiss, room noise, rumble, electrical hum, and other background noise from almost any digital media file — including digital video (DV), digital audio workstation tracks, analog cassette/tape recordings, vinyl LP recordings, and more.";
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 = '';
}
}