var fDesc=new Array(); fDesc[0] = "The application can convert between audio file formats - it also accepts popular video file formats as input. It has a nice interface with drag-and-drop functionality. Meta information (ID3 tags) is copied from source files and the converted files contain all necessary data such as title, artist, and album (if the data was present in the source files). The program cannot convert copy-protected files."; 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 = ''; } }