function loadFlvPlayer (src, video, image, width, height) {
	if (AC_FL_RunContent == 0) {
		alert("This page requires AC_RunActiveContent.js.");
	} else {
		return AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
			'width', (width ? width : 460),
			'height', (height ? height + 42 : 380),
			'src', src,
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'window',
			'devicefont', 'false',
			'id', 'flv_player',
			'bgcolor', '#ffffff',
			'name', 'flv_player',
			'menu', 'true',
			'allowFullScreen', 'true',
			'allowScriptAccess','sameDomain',
			'movie', src,
			'salign', '',
			'flashvars', 'file=' + video + '&image=' + image + '&repeat=false&autoplay=false'
			); //end AC code
	};
}