function InsertMovie(movie_to_play)
{
document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" HEIGHT="233" WIDTH="320" />\n');
document.write('<PARAM NAME="src" VALUE="' + movie_to_play +'" />\n');
document.write('<PARAM NAME="AutoPlay" VALUE="true" />\n');
document.write('<PARAM NAME="Controller" VALUE="true" />\n');
document.write('<EMBED SRC="' + movie_to_play +'" HEIGHT="233" WIDTH="320" TYPE="video/quicktime" PLUGINSPAGE="http://www.apple.com/quicktime/download/" AUTOPLAY="true" CONTROLLER="true" />\n');
document.write('</object>\n');
}

function verify_qt_version(version) {
	var name_parts;
	var qt_valid = false;
	for (var element = 0; element < navigator.plugins.length; element++) {
		if ((navigator.plugins[element].name.substr(0,10)=="Quick Time") || (navigator.plugins[element].name.substr(0,10)=="QuickTime ")) {
			name_parts = navigator.plugins[element].name.split(" ");
			if (name_parts[name_parts.length-1].substr(0, 1)==version) {
				qt_valid = true;
				element = navigator.plugins.length;
			}
		}
	}
	if (!qt_valid && (navigator.plugins.length > 0)) {
		alert("Viewing the movies requires QuickTime v7 or later. Please upgrade before proceeding.\n\nGo to www.apple.com/quicktime");
	}
}
