function insert_video(path, width, height) {
	if (!width) width = 400;
	if (!height) height = 290;
	var container_id = 'video_flv_'+(new Date()).getTime();
	document.write('<div id="'+container_id+'"></div>');
	Event.observe(window, 'load', function() {
		flashembed(container_id, 
		{
			src:'/js/FlowPlayerDark.swf',
			width: width, 
			height: height
			},
			{config: {   
				autoPlay: false,
				autoBuffering: true,
				controlBarBackgroundColor:'0x990000',
				initialScale: 'scale',
				videoFile: path
			}} 
		);
	});
}