var fDesc=new Array(); fDesc[0] = "VorbisExt is a property sheet shell extension that can edit the comments in vorbis (.ogg) files and display information about vorbis files. VorbisExt provides a Comments page for the comment editing. Vorbis files can store a list of comments. Each comment is made up of a name/value pair. Vorbis allows the addition, removal, modification and reordering of the comments. VorbisExt also provides an Information page for viewing Vorbis information. Details such as bitrate, length, samples, and sample frequency are displayed. For Windows Me, Windows 2000 and Windows XP users, VorbisExt provides more information for the detailed view in Explorer. Information such as track number, bitrate, sample rate and various comments can be viewed in the columns."; 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 = ''; } }