var width = 310;		// プレイヤーの幅
var height = 221;		// プレイヤーの高さ

function playMovie2( file ){
	var src = 	'<object classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" width="' + width + '" height="' + height + '" id="movie">';
	src += '<param name="URL" value="' + file + '">';
	src += '<param name="AutoStart" value="true">';
	src += '<param name="ShowStatusBar" value="false">';
	src += '<param name="stretchToFit" value="true">';
	src += '<param name="uiMode" value="full">';
	src += '<param name="Volume" value="100">';
	src += '<embed src="' + file + '" type="application/x-mplayer2" width="' + width + '" height="' + height + '" AnimationStart="0" PlayCount="1" ShowControls="1" EnablePositionControls="1" ShowPositionControls="1" ShowAudioControls="1" ShowTracker="1" ShowStatusBar="0" CanSeek="1" AutoSize="0" AllowScan="0" AutoStart="1" ClickToPlay="0" EnableContextmenu="0" TransparentStart="0" Volume="100" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/">';
	src += '</embed>';
	src += '</object>';
	
	document.getElementById("wmv_play2").innerHTML = src;

}
