// <EMBED> <OBJECT> <APPLET> 출력용 함수
// -------------- 플래시 출력 --------------------
// fla : 플래시 경로
// width, height : 크기
// version : 플래시 출력 버전
function showPlayer(fla, width, height, AutoStart, ShowTracker, ShowControls, ShowGotoBar, ShowDisplay, ShowStatusBar, AutoSize)
{
	var object =
		"<object id='player' name='player' classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715' width='" + width + "' height='" + height + "'>"
		+ "<param name='FileName' value='" + fla + "'>"		
		+ "<param name='AutoStart' value='" + AutoStart + "'>"
		+ "<param name='ShowTracker' value='" + ShowTracker + "'>"
		+ "<param name='ShowControls' value='" + ShowControls + "'>"
		+ "<param name='ShowGotoBar' value='" + ShowGotoBar + "'>"
		+ "<param name='ShowDisplay' value='" + ShowDisplay + "'>"
		+ "<param name='ShowStatusBar' value='" + ShowStatusBar + "'>"
		+ "<param name='AutoSize' value='" + AutoSize + "'>"	
		+ "<embed src='" + fla + "' AutoStart='" + AutoStart + "' ShowTracker='" + ShowTracker + "' ShowControls='" + ShowControls + "' ShowGotoBar='" + ShowGotoBar + "' ShowDisplay='" + ShowDisplay + "' ShowStatusBar='" + ShowStatusBar + "' AutoSize='" + AutoSize + "' pluginspage='http://www.microsoft.com/windows/windowsmedia/download/' width='" + width + "' height='" + height + "'></embed>"
		+ "</object>"
												
	document.write( object );
}

function m_play() {
	document.all.player.play();
}

function m_pause() {
	document.all.player.pause();
}

function m_stop() {
	document.all.player.stop();
}

function fullView() {
	//document.all.player.fullScreen = 'true';
}

function showPlayer2(fla, width, height, AutoStart, ShowTracker, ShowControls, ShowGotoBar, ShowDisplay, ShowStatusBar, AutoSize)
{
	var object =
		"<object id='player2' name='player2' classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715' width='" + width + "' height='" + height + "'>"
		+ "<param name='FileName' value='" + fla + "'>"		
		+ "<param name='AutoStart' value='" + AutoStart + "'>"
		+ "<param name='ShowTracker' value='" + ShowTracker + "'>"
		+ "<param name='ShowControls' value='" + ShowControls + "'>"
		+ "<param name='ShowGotoBar' value='" + ShowGotoBar + "'>"
		+ "<param name='ShowDisplay' value='" + ShowDisplay + "'>"
		+ "<param name='ShowStatusBar' value='" + ShowStatusBar + "'>"
		+ "<param name='AutoSize' value='" + AutoSize + "'>"	
		+ "<embed src='" + fla + "' AutoStart='" + AutoStart + "' ShowTracker='" + ShowTracker + "' ShowControls='" + ShowControls + "' ShowGotoBar='" + ShowGotoBar + "' ShowDisplay='" + ShowDisplay + "' ShowStatusBar='" + ShowStatusBar + "' AutoSize='" + AutoSize + "' pluginspage='http://www.microsoft.com/windows/windowsmedia/download/' width='" + width + "' height='" + height + "'></embed>"
		+ "</object>"
												
	document.write( object );
}

function m_play2() {
	document.all.player2.play();
}

function m_pause2() {
	document.all.player2.pause();
}

function m_stop2() {
	document.all.player2.stop();
}