function insertFLVMovie(strElID, strFLVFilename, intWidth, intHeight) {
	$("#" + strElID).html("");
	flowplayer(strElID, strFLVPlayerURL, {
		clip:  {
			autoPlay: false,
	        autoBuffering: true,
			url: strFLVFilename,
			scaling: "orig"
	    },
		plugins: {
			controls: null
		}
	});
}
