

function play_video(){

	return AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
		'width', '512',
		'height', '320',
		'src', 'GoPlayer',
		'quality', 'high',
		'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'showall',
		'devicefont', 'false',
		'id', 'GoPlayer',
		'bgcolor', '#ffffff',
		'name', 'GoPlayer',
		'menu', 'true',
		'allowFullScreen', 'false',
		'allowScriptAccess','sameDomain',
		'movie', '/flash/GoPlayer',
		'FlashVars', 'myVar=' + video_file_name,
		'salign', ''
		); //end AC code
};


function add_video_dialog() {
	
	$("#video_dialog").remove();
	$("#video_image").after("<div id='video_dialog'></div>");
	$("#video_dialog").append( play_video() );
	$("#video_dialog").dialog({ height: 321, width: 512, draggable: false, modal: true, resizable: false } );
	$("#video_dialog").addClass( 'clicked_dialog' );


};

function close_modal() {
	$("#video_dialog").remove();
};


	