var fDesc=new Array();
fDesc[0] = "Start podcasting today with all the podcasting software you'll ever need! Award-winning design, proven support, and complete tutorials make this the best podcasting tool on the market. ePodcast Creator is the only podcasting system with all of these features:
- Full audio podcast production- record, edit, assemble, and upload your podcasts from a single program;
- Drag and drop audio files onto onscreen function keys for instant access to music and sound effects;
- Control the relative volume of each track when making voiceovers;
- Full iTunes tagging support, complete RSS feed creation;
- Complete audio editing studio to remove mistakes & professionally polish your sound;
- Quick help files, downloadable manual, & free online video tutorial.";
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 = '';
}
}