You can put just about anything into the window that shows up on top by editing the innerHTML property in the javascript function. The default code is shown below:
thediv.innerHTML = "
<table width=’100%’ height=’100%’><tr><td align=’center’ valign=’middle’ width=’100%’ height=’100%’><object classid=’clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B’ codebase=’https://www.apple.com/qtactivex/qtplugin.cab’ width=’640′ height=’500′><param name=’src’ value=’https://cowcast.creativecow.net/after_effects/episodes/Shape_Tips_1_POD.mp4′><param name=’bgcolor’ value=’#000000′><embed src=’https://cowcast.creativecow.net/after_effects/episodes/Shape_Tips_1_POD.mp4′ autoplay=’true’ pluginspage=’https://www.apple.com/quicktime/download/’ height=’500′ width=’640′ bgcolor=’#000000′></embed></object><br><br><a href=’#’ onclick=’return clicker();’>CLOSE WINDOW</a></td></tr></table>
";
Everything between the thediv.innerHTML = " and the "; is the HTML code that is going to be inserted into the layer that will overlay the page. If you want to have that HTML be something else, say for instance a SWF movie. Then you should copy and paste the HTML code for your SWF movie there, along with any table or formatting HTML code that will support the display of the movie. The only gotcha in this method is making sure you escape any double quote marks with a backslash or try and use single quotes.
Abraham