var fDesc=new Array();
fDesc[0] = "Turn your computer into a professional broadcast quality recording studio.
DAK’s Wave Recorder & Editor's simple, intuitive interface makes it easy to use for recording live, copying records & cassettes and recording streaming audio from the Internet.
Plus you can edit down to 1/4 of a second fast, create new fades, apply effects and much more.
DAK's watch-on-your-computer step-by-step tutorial movies will teach you how to record, edit, extract parts, separate tracks, mix your music and your voice 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 = '';
}
}