var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to edit or create new iTunes podcasts. The user simply loads existing podcast or chooses to create a new one and can edit/enter the following: title, language, description, subtitle, summary, owner's name, link, copyright, author, category, owner's e-mail address, and image link. The lower pane displays each episode belonging to the current podcast, showing: author, subtitle, length, GUID, publication date, duration, keywords, explicit, and category. The user can edit these details or add new episodes to the podcast. This easy to use software has an option to load a sample podcast, allowing users to familiarize themselves with the normal content for each field."; 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 = ''; } }