var PwJqueryObject = $;

function pw_hall_play_movie(refs)
{
	var flashvars = {
			 autoPlay: true,
			 src: refs.path_url,
			 vol: 0.5
			};
	var params = {
			menu: "false",
			scale: "noScale",
			allowFullscreen: "true",
			allowScriptAccess: "always",
			bgcolor: "#FFFFFF"
		     };
	var attributes = {
			  id:"pw_hall_movie_player"
			 };
	var width = parseInt(refs.width);
	var height = parseInt(refs.height) + 25;
	var userAgent = window.navigator.userAgent.toLowerCase();
	if(userAgent.indexOf("msie") > -1)
	{
		width += 10;
		height += 10;
	}
	PwJqueryObject.modal(
	'<div id="pw_hall_movie_player" style="background-color:#FFFFFF;width:300px;"><a href="http://get.adobe.com/jp/flashplayer/" target="_blank">Adobe Flash Player</a>が必要です</div>',
	{
		onShow: function()
		{
			swfobject.embedSWF(refs.player_url, "pw_hall_movie_player", width, height, "9.0.0", "expressInstall.swf", flashvars, params, attributes);
		},
		containerCss:{'width':width,'height':height,'padding':5,'margin':0,'background-color':'#FFFFFF'},
		overlayCss: {backgroundColor:"#000"},
		overlayClose:true
	});
}

