// JavaScript Document
function InsertSampleMovie()
{
document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"\n');
document.write('    codebase=\n');
document.write('      "http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"\n');
document.write('    width="160" height="120" align="middle">\n');
document.write('  <param name="src" value="satin_doll.mov" />\n');
document.write('  <param name="autoplay" value="true" />\n');
document.write('  <embed src="satin_doll.mov" volume="70" autoplay="true" width="160"\n');
document.write('      height="136" align="middle" bgcolor="black"\n');
document.write('      pluginspage="http://www.apple.com/quicktime/download/">\n');
document.write('  </embed>\n');
document.write('</object>\n');
}
