var VideoPath = '/upload/video/';
var VideoFile = '';

function GetMovieName() {
	return VideoPath + VideoFile;
}

function GetSkinName() {
	return VideoPath + 'SkinUnderPlaySeekMute.swf';
	//return VideoPath + 'SkinUnderAllNoVolNoCaptionNoFull.swf';
}

function VideoPlayer(FileName) {
	VideoFile = FileName;
	document.write('<center>');
	AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
		'width', '480',
		'height', '392',
		'src', 'player',
		'quality', 'high',
		'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'showall',
		'wmode', 'transparent',
		'devicefont', 'false',
		'id', 'player',
		'bgcolor', '#ffffff',
		'name', 'player',
		'menu', 'true',
		'allowFullScreen', 'false',
		'allowScriptAccess','sameDomain',
		'movie', '/upload/video/player',
		'salign', ''
	); //end AC code
	player_code = '<object height=&quot;392&quot; width=&quot;480&quot; classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&quot;><param name=&quot;allowScriptAccess&quot; value=&quot;sameDomain&quot; /><param name=&quot;movie&quot; value=&quot;http://www.cigarinfo.ru/upload/video/player.swf?movie_name=http://www.cigarinfo.ru/upload/video/'+FileName+'&skin_name=http://www.cigarinfo.ru/upload/video/SkinUnderPlaySeekMute.swf&quot; /><param name=&quot;allowscriptaccess&quot; value=&quot;always&quot; /><embed src=&quot;http://www.cigarinfo.ru/upload/video/player.swf?movie_name=http://www.cigarinfo.ru/upload/video/'+FileName+'&skin_name=http://www.cigarinfo.ru/upload/video/SkinUnderPlaySeekMute.swf&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;392&quot;></embed></object>';
	document.write('<form name="codeForm">');
	document.write('<p class="code_field">Код: <input type="text" name="code" value="'+player_code+'" size="60" readonly onClick="javascript:document.codeForm.code.focus();document.codeForm.code.select();"></p>');
	document.write('</form>');
	document.write('</center>');
}