<!-- make sure to change myMovie_FSCommand to NewMovieID_FSCommand if altering the id for the swf -->
Sub myMovie_FSCommand(ByVal command, ByVal args)
select case command
case "putHREF" window.Document.Location.Hash = args
case "putTitle" Document.Title = args
case "loadPage"
historyframe.Document.Open "text/html"
historyframe.Document.Write "<html><head><title></title>"
historyframe.Document.Write "<script language='JavaScript'>"
historyframe.Document.Write "parent.setFlashVariables('myMovie','"+args+"');"
historyframe.Document.Write "</" + "script></head><body></body></html>"
historyframe.Document.Close
case "putHistTitle" historyframe.Document.Title = args
end select
end sub