var fDesc=new Array();
fDesc[0] = "What-U-Hear Recorder is a program which allows you to record sounds.
Main features:
- Option to 'split' the recording track at any time which is very useful when recording iNet radio streams or audio albums from a Youtube video or other source.
- Options to record to several popular formats and sample rates (i.e. WAV, MP3, WMA, OGG, etc...)
- Option to set the path (folder) that the recording will reside.";
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 = '';
}
}