//---------------------------------------------------------------------
// CreateJWPlayer() - JWPlayer 생성 함수
//	- strDivID		: 플레이어를 생성할 영역
//	- strVideoKey	: 비디오 키
//	- nWidth		: 비디오 크기(폭)
//	- nHeight		: 비디오 크기(높이)
//	- strControlBar	: ControlBar 옵션
//	- strStretching	: Stretching 옵션 (none, exactfit, uniform, fill)
//---------------------------------------------------------------------
function CreateJWPlayer( strDivID, strVideoKey, nWidth, nHeight, strControlBar, strStretching )
{
	// 아이패드/아이폰/아이팟일 경우는 mp4로 재생
	if ( navigator.platform.indexOf("iPad") != -1 || navigator.platform.indexOf("iPhone") != -1 || navigator.platform.indexOf("iPod") != -1 )
		var strFileName		= '/files/attach/medias/' + strVideoKey + '.mp4';
	else
		var strFileName		= '/files/attach/medias/' + strVideoKey + '.flv';

	if ( strControlBar == "" )	strControlBar	= "over";
	if ( strStretching == "" )	strStretching	= "none";

	jwplayer( strDivID ).setup( {
		'flashplayer': '/player/player.swf',
		'skin': '/player/skins/facebook.zip',
		'plugins': {
			'sharing-3': { }
		},
		'controlbar': strControlBar,
		'stretching': strStretching,
		'file': strFileName,
		'image': '/files/attach/medias/flv' + strVideoKey + '/' + strVideoKey + '.png',
		'width': nWidth,
		'height': nHeight
	} );
}
