var videoPlayer = function(){
	
	this.video = '';
	this.width = '640px';
	this.height = '480px';
	this.autoplay = false;
	this.autoload = true;
	this.showcontrols = true;
	
	this.display = function() {
		flashvars = 'video='+this.video+'&autoplay='+this.autoplay+'&autoload='+this.autoload+'&showcontrols='+this.showcontrols;
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
			'width', this.width,
			'height', this.height,
			'src', 'video_player',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'tl',
			'play', 'true',
			'loop', 'true',
			'scale', 'noscale',
			'wmode', 'window',
			'devicefont', 'false',
			'id', 'video_player',
			'bgcolor', '#000000',
			'name', 'video_player',
			'menu', 'true',
			'allowFullScreen', 'true',
			'allowScriptAccess','sameDomain',
			'movie', 'video_player',
			'salign', 'tl',
			'flashvars', flashvars
		);
	}
}
