var fDesc=new Array();
fDesc[0] = "FEATURES of ePodcast Creator:
- Full podcast production- record, edit, and upload your podcasts.
- Record your voice, interviews, church services, meetings, music, bird song, concerts, podsafe music files, LPs, tapes, etc., and save as wave or MP3 files
- Edit with cut and paste, crop, and effects: reverse, amplify, remove pops and clicks, echo, and much more.
- Amplify
- Bass Boost
- Chorus
- Echo
- 10-band EQ
- Fade In
- Fade out
- Flange
- Noise Gate
- Low Pass
- Mix
- Pop and Click Removal
- Normalization
- Reverse
- Sound Warmer
- Drag and drop up to 12 audio files onto function buttons for instant access to music and sound effects while you are assembling your podcast
- Control the relative volume of each track when making voiceovers or mixing tracks together
- Upload completed podcasts to the internet quickly and reliably
- Make iTunes tags, create complete RSS feeds
- Use the included free sound effects and music clips";
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 = '';
}
}