﻿function Start(varWidth, ImageDirectory, FileName){		document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="');	document.write(varWidth);	document.write('" HEIGHT="260"');	document.write('CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');	document.write('<PARAM name="SRC" VALUE="');	document.write(ImageDirectory);	document.write(FileName);	document.write('">');	document.write('<PARAM name="AUTOPLAY" VALUE="true">');	document.write('<PARAM name="CONTROLLER" VALUE="true">');	document.write('<PARAM name="VOLUME" VALUE="100">');	document.write('<EMBED SRC="');	document.write(ImageDirectory);	document.write(FileName);	document.write('" WIDTH="');	document.write(varWidth);	document.write('" HEIGHT="260" VSPACE="0" VOLUME="100" HSPACE="0" PLUGINSPAGE="http://www.apple.com/quicktime/download/" AUTOPLAY="true" CONTROLLER="true">');	document.write('</EMBED>');	document.write('</OBJECT>');}