function embedFlv(thumb, videofile, videoid, containerid, vidwidth, vidheight) {
	var flashvars = {
		imagePath: thumb,
		videoPath: videofile,
		autoStart: "true",
		autoHide: "true",
		autoHideTime: "2",
		hideLogo: "true",
		volAudio: "60",
		newWidth: vidwidth,
		newHeight: vidheight,
		disableMiddleButton: "true",
		playSounds: "false",
		soundBarColor: "0x000000",
		barColor: "0x000000",
		barShadowColor: "0x000000",
		subbarColor: "0x000000",
		loop: "true"
	};
	var params = {
		allowFullScreen: "false"
	};
	

	var attributes = {
		id: videoid,
		name: videoid
	};

	swfobject.embedSWF("flash/flvPlayer.swf", containerid, vidwidth, vidheight, "9.0.0", '', flashvars, params, attributes);
}