// JavaScript Document

function InsertSampleMovie()
{
document.write('<object classid="clsid: 02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
document.write('<param name="src" value="/vid/k1000.mov">\n');
document.write('<param name="AUTOPLAY" value="true">\n');
document.write('<param name="CONTROLLER" value="true">\n');
document.write('<param name="LOOP" value="false">\n');
document.write('<embed src="/vid/k1000.mov" width="320" height="256" autoplay="true" controller="true" loop="false" pluginspage="http://www.apple.com/quicktime/download/">\n' );
document.write('</embed>\n' );
document.write('</object>\n');
}