Grrr, I clicked edit to view proof read my post and it deleted all but the title.
There use to be a topic here called "Wishlist !" and it had a lot of really cool examples in that long topic. Unfortunately I am no longer able to find it.
There was a reply on it from Will that showed how he was able to have the jw player change pages in an iframe everytime the song changed. This would load a page that he had created that corresponded with the song that listed song information such as the lyrics. He also linked an example page.
I am trying to do something similiar to this. I want to be able to have a small iframe in my player window change everytime the song changes. That way if i create a bunch of different pages for each song that includes title info, album info, artist info, ratings, lyrics, album art, etc (which I hope to accomplish all dynamically but thats another project), it will hen load the page the is linked to the song.
I don't recall if he had it pulling the page via the song name matching the page name or how he did it, but it seemed very clever.
Any suggestions on how to go about doing this?
Thank you in advanced!

this can be done in different ways using the annotation tag in the playlist or the itemnumber of the currently playing item-
you can have the entire html code in the annotation and write it to a css layer - please see the [url=http://home5.inet.tele.dk/nyboe/flash/mediaplayer/annotationdisplayimage.htm]annotationdisplayimage[/url] demo
or you can keep the filenames of separate .html pages in the annotation tag and and feed these filenames to the <iframe src with each new song...
or if you use separate .html files you can have these filenames in an array and feed thesee to the src by the itemnumber
or if you use a naming convention for the .html files you can use the itemnumber directly in the filename...
if you give the iframe the id="iframeID" then the crucial feeding line can be something like this:
var theFileName = "file1.html";document.getElementById("iframeID").src = theFileName;