// JavaScript Document

function InsertSampleMovie()
{
document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="600" HEIGHT="400" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">\n');
document.write('					<PARAM name="SRC" VALUE="images/1.avi">\n');
document.write('					<PARAM name="AUTOPLAY" VALUE="false">\n');
document.write('					<PARAM name="CONTROLLER" VALUE="true">\n');
document.write('					<PARAM name="LOOP" VALUE="false">\n');
document.write('					<PARAM name="ENDTIME" VALUE="0:7:19">\n');
document.write('<embed src="images/1.avi" width="600" height="400" autoplay="false" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>\n');
document.write('</OBJECT>\n');

					
}