var fDesc=new Array(); fDesc[0] = "Have you ever create a collection of music files?
Imagine you just want to pick best of them by your choice.
you have to go to several folders,play each music file and see if you want to put it in your collection.
It's boring,yeah?
this application will help you to do it easier.
you can select a folder and search all files inside it,and play music file in the application,if you want that file to be included in your collection just select it and copy/cut to your destination folder(selection folder)."; 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 = ''; } }