function addVideo(file){
	var is_youtube = new RegExp(/.*youtube.*/);
	if(!is_youtube.test(file)){
	flowplayer("videoshpmainvideo1",
			{src:"/flash/flowplayer-3.2.2.swf"},
				{
				"clip":{
					"url":"http://live.fullcourtstats.com/video/index.php%3Fvideo_file%3D"+file+".flv"
					},
				"screen":{
					"height":"100pct",
					"top":0
					},
				"plugins":{
					"controls":{
						"borderRadius":"0px",
						"timeColor":"#ffffff",
						"bufferGradient":"none",
						"slowForward":true,
						"backgroundColor":"rgba(0, 0, 0, 0)",
						"volumeSliderGradient":"none",
						"slowBackward":false,
						"timeBorderRadius":20,
						"time":true,
						"progressGradient":"none",
						"height":26,
						"volumeColor":"rgba(0, 93, 199, 1)",
						"tooltips":{"marginBottom":5,"scrubber":true,"volume":true,"buttons":false},
						"opacity":1,
						"fastBackward":false,
						"timeFontSize":12,
						"bufferColor":"#a3a3a3",
						"border":"0px",
						"volumeSliderColor":"#ffffff",
						"buttonColor":"#ffffff",
						"mute":true,
						"autoHide":{"enabled":true,"hideDelay":500,"mouseOutDelay":500,"hideStyle":"fade","hideDuration":400,"fullscreenOnly":true},
						"backgroundGradient":"none",
						"width":"100pct",
						"display":"block",
						"sliderBorder":"1px solid rgba(128, 128, 128, 0.7)",
						"buttonOverColor":"#ffffff",
						"fullscreen":true,
						"timeBgColor":"rgb(0, 0, 0, 0)",
						"scrubberBarHeightRatio":0.2,
						"bottom":0,
						"stop":false,
						"zIndex":1,
						"sliderColor":"#000000",
						"scrubberHeightRatio":0.6,
						"tooltipTextColor":"#ffffff",
						"sliderGradient":"none",
						"timeBgHeightRatio":0.8,
						"volumeSliderHeightRatio":0.6,
						"timeSeparator":" ",
						"name":"controls",
						"volumeBarHeightRatio":0.2,
						"left":"50pct",
						"tooltipColor":"rgba(0, 0, 0, 0)",
						"playlist":false,
						"durationColor":"#b8d9ff",
						"play":true,
						"fastForward":true,
						"timeBorder":"0px solid rgba(0, 0, 0, 0.3)",
						"progressColor":"rgba(0, 93, 199, 1)",
						"volume":true,
						"scrubber":true,
						"builtIn":false,
						"volumeBorder":"1px solid rgba(128, 128, 128, 0.7)"
					}
				}
				}
			);
	}else{
		var div = document.getElementById('videoshpmainvideo1');
		div.innerHTML = '<object width="440" height="300"><param name="movie" value="'+file+'&hl=en_EN&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+file+'&hl=en_EN&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="440" height="300"></embed></object>';
	}
}



