function sendVideoToFlash(movie_url, movie_width, movie_height, src_video, replaceID, bgcolor, autostart)
{
	movie_height = parseInt(movie_height + 33);	

	var attribs = { 
		data : src_video,
		width : movie_width,
		height : movie_height
	};
	
	var params = { 
		movie : src_video,
		salign : 'lt',
		quality : 'high',
		scale : 'noscale',
		allowScriptAccess: 'sameDomain',
		bgcolor: bgcolor,
		FlashVars:'streamName=' + movie_url + '&autoStart=' + autostart
	};

	var myObject = swfobject.createSWF(attribs, params, replaceID);
	
}