function EmbedQTVideo(SrcURL, Width, Height, Bgcolor) {
	var EmbedStr = '<object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b"';
		EmbedStr = EmbedStr + 'codebase="http://www.apple.com/qtactivex/qtplugin.cab"';
		EmbedStr = EmbedStr + 'height="' + Height + '" width="' + Width + '"';
		EmbedStr = EmbedStr + 'id="QTVideo">';

//		EmbedStr = EmbedStr + '<param name="src" value="' + 'http://instruct1.cit.cornell.edu/courses/russa121' + SrcURL + '">';
		EmbedStr = EmbedStr + '<param name="src" value="' + 'http://courses.cit.cornell.edu/russa121' + SrcURL + '">';

		EmbedStr = EmbedStr + '<param name="autoplay" value="false">';
		EmbedStr = EmbedStr + '<param name="controller" value="true">';
		EmbedStr = EmbedStr + '<param name="bgcolor" value="' + Bgcolor + '">';

		EmbedStr = EmbedStr + '<embed src="' + 'http://courses.cit.cornell.edu/russa121' + SrcURL + '"';
		EmbedStr = EmbedStr + 'type="video/quicktime"';
		EmbedStr = EmbedStr + 'height="' + Height + '"';
		EmbedStr = EmbedStr + 'width="' + Width + '"';		
		EmbedStr = EmbedStr + 'bgcolor="' + Bgcolor + '"';		
		EmbedStr = EmbedStr + 'autoplay=false controller=true loop=false ';
		EmbedStr = EmbedStr + 'pluginspage="http://www.apple.com/quicktime/download/"';
		EmbedStr = EmbedStr + '></embed>';		
		
		EmbedStr = EmbedStr + '</object>';
		
		document.getElementById("QTVideoEmbed").innerHTML = EmbedStr;
		
		// alert(EmbedStr);
}
