function FLVPlayerCaptions(name){
	if(name == 'player') autoPlay_option = true;
	else autoPlay_option = false;
	$f(name, HTTP + "flowplayer-3.1.5.swf", { 
		log: { level: 'debug', filter: 'org.flowplayer.captions.*'}, 
		key: '$42a840ba3853090b5d4', 
		logo: {  
			url: HTTP + '_layouts/images/player_logo.png', 
			top: '15', 
			left: '20', 
			width: '250',  
			height: '55', 
			fullscreenOnly: false, 
			displayTime: 0, 
			//fadeSpeed: 1000, 
			opacity: 1 
		}, 
		clip: { 
			//url: '/video/flowplayer.flv', 
	 
			// this is the Timed Text file with captions info 
			captionUrl: HTTP + '_upload/captions/' + CAPTION,
			autoPlay: autoPlay_option
		}, 
		plugins:  { 
	 
			captions: { 
				url: HTTP + 'flowplayer.captions-3.1.4.swf', 
	 			
				// pointer to a content plugin (see below) 
				captionTarget: 'content' 
			}, 
	 
			// configure a content plugin to look good for our purpose 
			content: { 
				url: HTTP + 'flowplayer.content-3.1.0.swf', 
				bottom: 25, 
				width: '80%',
				height:40,
				backgroundColor: 'transparent', 
				backgroundGradient: 'low', 
				borderRadius: 4, 
				border: 0, 
	 
				style: { 
					'body': { 
					fontSize: '14', 
					fontFamily: 'Arial', 
					textAlign: 'center', 
					color: '#000000' 
					} 
				} 
			} 
		} 
	});
}