<!--
// 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=9,0,0,0' width='"+w+"' height='"+h+"' id='"+id+"' align='middle'>"+
	"<param name='allowScriptAccess' value='always' />"+
	"<param name='movie' value='"+url+"' />"+	
	"<param name='wmode' value='"+win+"' />"+
	"<param name='scale' value='noscale' />"+
	"<param name='quality' value='high' />"+
	"<param name='bgcolor' value='"+bg+"' />"+
	"<param name='FlashVars' value='"+vars+"' />"+
	"<embed src='"+url+"' FlashVars='"+vars+"' wmode='"+win+"' menu='false' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' name='"+id+"' align='middle' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
	"</object>";

	// ÇÃ·¡½Ã ÄÚµå Ãâ·Â
	document.write(flashStr);

}

//µ¿¿µ»ó
function aviPlay(src,w,h) {
document.write('<embed src="'+src+'" width='+w+' height='+h+'>')
}

function show_movie_F(m_id,m_width,m_height,m_filename,m_control,m_start,m_transparent){
	document.write("<OBJECT CLASSID='clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95' ID='"+m_id+"' width='"+m_width+"' height='"+m_height+"'>");
	document.write("<PARAM NAME='filename' VALUE='"+m_filename+"'>");
	document.write("<PARAM NAME='ShowControls' VALUE='"+m_control+"'>");
	document.write("<PARAM NAME='AutoStart' VALUE='"+m_start+"'>");
	document.write("<PARAM NAME='TransparentAtStart' VALUE='"+m_transparent+"'>");
	document.write("</OBJECT>");
}

//eÃ»Ã¸Àå Ã¢´Ý±â
function wdclose(){
	parent.window.close();
}

//À½¾ÇPLAY
function playMusic(){
 document.getElementById("play").innerHTML = "<embed name=bgm src=mms://wm-003.cafe24.com/oncard/20.wma  hidden=true loop=true>";
}
function stopMusic(){
 document.getElementById("bgm").stop();
}

function top()
{
        x = document.body.scrollLeft;
        y = document.body.scrollTop;
        step = 2;

        while ((x != 0) || (y != 0)) {
                scroll (x, y);
                step += (step * step / 100);
                x -= step;
                y -= step;
                if (x < 0) x = 0;
                if (y < 0) y = 0;
        } 
        scroll (0, 0);
}
-->