/********************************************************************/
/* FLASH 															*/
/********************************************************************/

function videoPlayer(linkurl,w,h,auto_play,img) {
	var flashvars = {
		videoUrl: linkurl,
		autoPlay: auto_play,
		videoImg: img
	};
	var params = {
		allowScriptAccess: 'sameDomain',
		allowFullScreen: 'true',
		scale: 'exactfit',
		wmode: 'transparent'
	};
	var attributes = {
		id: 'video-player',
		name: 'video-player'
	};
	
	swfobject.embedSWF(movie_dir+'/video-player.swf', 'video-player', w, h, '9.0.0', false, flashvars, params, attributes);
}

