<!--

function flash_movie(file_name, width, height) {

	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='"+width+"' height='"+height+"'>")
	document.write("<param name='movie' value='"+file_name+"'>")
	document.write("<param name='quality' value='high'>")
	document.write("<param name='wmode' value='transparent'>")
	document.write("<embed src='"+file_name+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'></embed></object>")

}

	// size Á¶Àý (ÀüÃ¼ full ½ºÅ©¸° size='full')
	function resize(size)
	{
		if(size == '100'){
			//normal
			document.VodPlayer.DisplaySize = 0;
//			self.resizeTo(355,523);
		}
		else if(size == '200'){
			//200
			document.VodPlayer.DisplaySize = 4;
//			self.resizeTo(558,654);
		}
		else if(size == 'full'){
			//fullscreen
			document.VodPlayer.DisplaySize = 3;
		}
		
			// 0 : Same size as the source image. (mpDefaultSize)
			// 1 : Width and height are one-half of the source image dimensions, resulting in an image that is one-fourth the original size. (mpHalfSize)
			// 2 : Double the dimensions of the source image. (mpDoubleSize)
			// 3 : Size of the entire screen. (mpFullScreen)
			// 4 : Size specified at design time. (mpFitToSize)
			// 5 : One-sixteenth the size of the screen. (mpOneSixteenthScreen)
			// 6 : One-quarter the size of the screen. (mpOneFourthScreen)
			// 7 : Half the size of the screen. (mpOneHalfScreen)	
	}

	function movie_player(filename) {
		
		var movie_script = '';
		movie_script	+= "<object id='VodPlayer' classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'	standby='Loading Microsoft Windows Media Player...' width='320' height='310'>";
		movie_script	+= "<param name='AutoSize' value='0'>";
		movie_script	+= "<param name='AutoStart' value='0'>";
		movie_script	+= "<param name='AnimationAtStart' value='1'>";
		movie_script	+= "<param name='FileName' value='"+filename+"'><!-- µ¿¿µ»óÁÖ¼Ò-->";
		movie_script	+= "<param name='PLUGINSPAGE' value='http://www.microsoft.com/korea/windows/windowsmedia/'>";
		movie_script	+= "<param name='ShowControls' value='1'>";
		movie_script	+= "<param name='ShowStatusBar' value='1'>";
		movie_script	+= "<param name='ShowTracker' value='1'>";
		movie_script	+= "<param name='ShowPositionControls' value='0'>";
		movie_script	+= "<param name='EnableContextMenu' value='0'>";
		movie_script	+= "<embed animationatstart='1' align='middle' autosize='0' autostart='1' ClickToPlay='1' displaybackcolor='black' height='310' Name='VodPlayer' pluginspage='http://www.microsoft.com/korea/windows/windowsmedia/' ";
		movie_script	+= "PreviewMode='0' SelectionStart ='1' SelectionEnd ='1' SendKeyboardEvents='0' sendMouseClickEvents='0' SendMouseMoveEvents='0' showcontrols='1' showdisplay='1' showstatusbar='0' showtracker='0' ";
		movie_script	+= "showpositioncontrols='' ";
		movie_script	+= "src='"+filename+"' ";
		movie_script	+= "type='video/x-ms-asf-plugin' 	width='320'></embed></object>";

		document.write(movie_script);


	}
-->
