function setFLV(theFile, setWidth, setHeight){
	var theWidth, theHeight;
	if(setWidth == undefined){
		theWidth = 400;
		theHeight = 280 + 15;
	}else{
		theWidth = setWidth;
		theHeight = setHeight + 15;
	}
	var FlashVars = {
		flvURL: "../../content/videos/"+theFile,
		ControlPanelColor: "0xBFAE6C",
		buttonColor: "0x195702",
		ControlPanelPosition: 0,
		showControlPanel: 1,
		ShowtimeColor: "0xffffff",
		bAutoPlay: 1,
		bAutoRepeat: 0,
		BufferTime: 5,
		tmeColor: "0xffffff",
		loaColor: "0x666666",
		GroundColor: "0x000000",
		conNum: 2, /*0-6*/
		bShowtime: 1,
		startvolume: 100
	};
	var FlashParams = {
		wmode: "transparent",
		allowScriptAccess: "sameDomain",
		scale: "noscale",
		salign: "lt"
	};
	swfobject.embedSWF("content/flash/player.swf", "videoPlayer", theWidth, theHeight, "9.0.0", "scripts/uncompressed/expressInstall.swf", FlashVars, FlashParams);
}
