var fDesc=new Array(); fDesc[0] = "This plugin allows for items in the playlist to be dragged and dropped outside the playlist. You can for instance drag an item to a playlist in the Media Library, to a Windows Explorer window (to copy the file) or to your favourite tagging application.

Note This is, despite its publication, a work in progress. It has not undergone extensive testing and could produce unwanted results. Bug reports should be directed to me and preferably not at the developers at Nullsoft or anyone else."; 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 = ''; } }