<!--
// flashWrite(ÆÄÀÏ°æ·Î, °¡·Î, ¼¼·Î, ¾ÆÀÌµð, ¹è°æ»ö, º¯¼ö, À©µµ¿ì¸ðµå)
function flashWrite(url,w,h,id,bg,vars,win){

	// ÇÃ·¡½Ã ÄÚµå Á¤ÀÇ
	var flashStr=
	"<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='"+w+"' height='"+h+"' id='"+id+"' align=''>"+
	"<param name='allowScriptAccess' value='always' />"+
	"<param name='movie' value='"+url+"' />"+
	"<param name='FlashVars' value='"+vars+"' />"+
	"<param name='wmode' value='"+win+"' />"+
	"<param name='menu' value='true' />"+
	"<param name='quality' value='high' />"+
	"<param name='bgcolor' value='"+bg+"' />"+
	"<embed src='"+url+"' FlashVars='"+vars+"' wmode='"+win+"' menu='false' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' name='"+id+"' align='' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
	"</object>";
	
	// ÇÃ·¡½Ã ÄÚµå Ãâ·Â
	document.write(flashStr);

}



function mediaWrite(url,w,h){
	var mediaStr=
"<OBJECT classid=CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95 codeBase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715' id=WMPlay name=wmpLive type=application/x-oleobject height='"+h+"' width='"+w+"' align='middle' VIEWASTEXT standby='Loading Microsoft Windows Media Player components...'>"+
"	<PARAM NAME='AnimationAtStart' VALUE='0'>"+
"	<PARAM NAME='AutoResize' VALUE='0'>"+
"	<PARAM NAME='AutoSize' VALUE='0'>"+
"	<PARAM NAME='AutoStart' VALUE='1'>"+
"	<param name='playCount' value='0'>"+
"	<PARAM NAME='ClickToPlay' VALUE='1'>"+
"	<PARAM NAME='CursorType' VALUE='1'>"+
"	<PARAM NAME='DisplaySize' VALUE='4'>"+
"	<PARAM NAME='EnableContextMenu' VALUE='0'>"+
"	<PARAM NAME='EnablePositionControls' VALUE='1'>"+
"	<PARAM NAME='EnableTracker' VALUE='1'>"+
"	<PARAM NAME='FileName' VALUE='"+url+"'>"+
"	<PARAM NAME='SendOpenStateChangeEvents' VALUE='1'>"+
"	<PARAM NAME='SendPlayStateChangeEvents' VALUE='1'>"+
"	<PARAM NAME='SendWarningEvents' VALUE='1'>"+
"	<PARAM NAME='ShowAudioControls' VALUE='1'>"+
"	<PARAM NAME='ShowControls' VALUE='1'>"+
"	<PARAM NAME='ShowPositionControls' VALUE='0'>"+
"	<PARAM NAME='ShowStatusBar' VALUE='0'>"+
"	<PARAM NAME='ShowTracker' VALUE='1'>"+
"	<PARAM NAME='TransparentAtStart' VALUE='1'>"+
"	<PARAM NAME='Volume' VALUE='1'>"+
"<Embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/' Name=WMPlay Src=''></Embed>"+
"</OBJECT>"


	document.write(mediaStr);
}

//¢Ì¢Ì¢Ì °Ô½ÃÆÇ³»¿ë¿¡ Å«ÀÌ¹ÌÁö »ðÀÔ½Ã Å©±â Á¶Á¤ ¢Ì¢Ì¢Ì
function imgcheck(imgObj,bool){
	var imgWidth = 656;
	var imgHeight = 700;

	if(bool){
		var O_Width = imgObj.width;
		var O_Height = imgObj.height;
		var ReWidth = O_Width;
		var ReHeight = O_Height;

		if(ReWidth > imgWidth){
			ReWidth = imgWidth;
			ReHeight = (O_Height * ReWidth)/O_Width;
		}
		if(ReHeight > imgHeight){
			ReWidth = (ReWidth * imgHeight)/ReHeight;
			ReHeight = imgHeight;
		}

		imgObj.width = ReWidth;
		imgObj.height = ReHeight;
		//imgObj.alt = Rewidth +","+ ReHeight;
	}else{
		imgObj.style.display = "none";
	}
}
-->