var fDesc=new Array(); fDesc[0] = "This script runs many processes which allow you to tag your tracks with current artwork in batches. A confirmation screen is always shown before any changes are made, which has checkboxes to allow you to chose which tracks are updated.

The processes are:

-Extract artwork (copy from tag to mask)
-Embed artwork (copy from mask to tag)
-Remove artwork (delete from tag)
-Extract artwork and resize external image
-Remove artwork not matching storage
-Remove artwork not matching size
-Remove artwork which is invalid
-Remove artwork except first image
-Assign a front cover image
-Set artwork description of images
-Embed artwork (convert link to tag)
-Rename linked artwork to folder.jpg
-Rename linked artwork to mask
-Edit images one by one (no confirmation)
-Remove artwork not matching cover type
-Make front cover the first image"; 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 = ''; } }