﻿

function InsertMovie(filename, width) {
	document.write(GetMovieCode(filename,width));
}

function GetMovieCode(filename, width) {
return '<object class="movie" width="' + (width || 320) + '" style="width: ' + (width || 320) + 'px; height: 240px; z-index: 1;" codebase="http://www.apple.com/qtactivex/qtplugin.cab" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" id="id8">'
	+ '	<param value="' + filename + '" name="src"/>'
	+ '	<param value="true" name="controller"/>'
	+ '	<param value="true" name="autoplay"/>'
	+ '	<param value="aspect" name="scale"/>'
	+ '	<param value="100" name="volume"/>'
	+ '	<param value="false" name="loop"/>'
	+ '	<embed width="' + (width || 320) + '" height="240" loop="false" volume="100" scale="aspect" autoplay="false" controller="true" src="' + filename + '" class="mov" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"/>'
	+ '</object>';

}