		var mheight;
		var mwidth;
		var mbgcol;
		var mcache;
		var msrc;
		var mauto;
		var mcont;
		
		function QT_movie(mheight,mwidth,mbgcol,mcache,msrc,mauto,mcont){
		
			var mclid = "clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";
			var mcode = "http://www.apple.com/qtactivex/qtplugin.cab";
			var mtype = "video/quicktime";
			var mpispace = "http://www.apple.com/quicktime/download/";
			
			document.write("<object classid=\"" + mclid);
			document.write("\" codebase=\"" + mcode);
			document.write("\" height=\"" + mheight);
			document.write("\" width=\"" + mwidth);
			document.write("\" style=\"background-color: #" + mbgcol + ";\">");
			document.write("<param name=\"bgcolor\" value=\"#" + mbgcol);
			document.write("\"><param name=\"type\" value=\"" + mtype);
			document.write("\"><param name=\"cache\" value=\"" + mcache);
			document.write("\"><param name=\"src\" value=\"" + msrc);
			document.write("\"><param name=\"autoplay\" value=\"" + mauto);
			document.write("\"><param name=\"controller\" value=\"" + mcont);
			document.write("\"><embed height=\"" + mheight);
			document.write("\" pluginspage=\"" + mpispace);
			document.write("\" src=\"" + msrc);
			document.write("\" type=\"" + mtype);
			document.write("\" width=\"" + mwidth);
			document.write("\" controller=\"" + mcont);
			document.write("\" autoplay=\"" + mauto);
			document.write("\" bgcolor=\"#" + mbgcol);
			document.write("\"><\/object>");
			return;
		
		}

