var output;function embed_movie(filename, height, width, autoplay, controller, mime, poster) {	if(!poster || poster==null || poster=="") poster = filename;	else controller = "false";	output = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www+apple+com/qtactivex/qtplugin+cab" height="'+height+'" width="'+width+'">';	output += '<param name="src" value="'+poster+'" />';	output += '<param name="target" value="myself" />';			output += '<param name="href" value="'+filename+'" />';			output += '<param name="autoplay" value="'+autoplay+'" />';			output += '<param name="controller" value="'+controller+'" />';	output += '<embed target="myself" src="'+poster+'" href="'+filename+'" height="'+height+'" width="'+width+'" autoplay="'+autoplay+'" controller="'+controller+'" scale="tofit" cache="true" TYPE="'+mime+'" pluginspage="http://www+apple+com/quicktime/download/" />';	output += '</object>';	document.write(output);}