var fDesc=new Array();
fDesc[0] = "Pulse Master is a neat Audio player which supports most of the popular audio formats.
Features include:
- Increasing/decreasing audio tempo (speed) without distorting the pitch.
- Increasing/decreasing audio pitch without changing the tempo.
- Record your changes and encode it to a new file in MP3 format!
The purpose of this software can be either for fun or professional use.";
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 = '';
}
}