// load_flash(ÆÄÀÏ°æ·Î, °¡·ÎÅ©±â, ¼¼·ÎÅ©±â)

function load_flash(url,width,height){

	// ÇÃ·¡½Ã ÄÚµå Á¤ÀÇ
	var flashStr=
	"<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+width+"' height='"+height+"' align='middle'>"+
	"<param name='movie' value='"+url+"' />"+
	"<param name='menu' value='false' />"+
	"<param name='quality' value='high' />"+
	"<embed src='"+url+"' menu='false' quality='high' width='"+width+"' height='"+height+"' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
	"</object>";

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

}


function load_embed(url,width,height){
	document.write("<embed src='"+url+"' type=video/x-ms-asf></embed>");
}

function load_object(url,width,height){
	height = eval(height)+50;
	var objStr = "<object id=\"MPlay\" width="+width+" height="+height+" viewastext style=\"z-index:1\" classid=\"CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\" standby=\"Loading Microsoft Windows Media Player components...\" type=\"application/x-oleobject\">"
    + "<param name=\"FileName\" value=\""+url+"\">"
	+ "<param name=\"SHOWCONTROLS\" value=\"-1\">"
	+ "</object>";
	document.write(objStr);
}

function cont_copy(selname){
	//document.all.neteid.select();alert(selname);
	/*if(document.selection.createRange().text == selname){
		document.selection.createRange().execCommand("copy");
		alert(document.selection.createRange().text+"°¡ º¹»çµÇ¾ú½À´Ï´Ù.");
	}*/
	var zone=document.body.createTextRange();
    zone.execCommand("copy");

	alert("³×ÀÌÆ®¿Â ¾ÆÀÌµð : " + selname);
}
