// ¸Þ´º·Ñ¿À¹ö
function bt(id,after)
{
eval(id+'.filters.blendTrans.stop();');
eval(id+'.filters.blendTrans.Apply();');
eval(id+'.src="'+after+'";');
eval(id+'.filters.blendTrans.Play();');
}

// Å¬¸¯½Ã Å×µÎ¸® Á¡¼± Á¦°Å ½ÃÀÛ
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;

// »õÃ¢¶ç¿ì±â
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
// °Ô½ÃÆÇ¿¡¼­ µ¿¿µ»ó ÀÚµ¿Àç»ý
function generateMedia(sID,sURL)
{
try
{
if (document.getElementById(sID)==null)
{
var el = event.srcElement;
while(el.tagName!="DIV")
el = el.parentElement;
sHTML = "<EMBED id='"+sID+"' autostart='true' SRC='"+sURL+"'>";
el.insertAdjacentHTML('afterEnd',sHTML);
}
}
catch(e){}
}
// onFocus="this.blur()" ÀÚµ¿ Àû¿ë
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG")
document.body.focus();
}
document.onfocusin=bluring;