idx = fileName.indexOf(" - "); // find the delimiter separating artist
title = fileName.substring(idx + 3, fileName.length - 4);
title = jTrim(title);
href = rootPath + pathSeparator + Server.URLPathEncode(fileName);
Response.Write("<DD><A HREF=\"" + href + "\">" + title + "</A></DD>\n");