function InsertMovie(address, width, height)
{
document.write('<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="');
document.write(width);
document.write('" height="');
document.write(height);
document.write('" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
document.write('<param name="src" value="');
document.write(address);
document.write('" />\n');
document.write('<param name="autoplay" value="false">');
document.write('<param name="controller" value="true">');
document.write('</object>\n');
}