// JavaScript Document

<!---- ÀÌ¹ÌÁö ¸µÅ© Á¡¼±¾ø¾Ö±â------>
<!--
function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;
// -->


<!---- ¸¶¿ì½º µå·¡±× ¹× ¿À¸¥ÂÊ Å¬¸¯ ¹æÁö ------>
<!--
function disableselect(e) {
  return false;
}


function reEnable() {
return true;
}


if (navigator.appName != "Netscape") {
  document.onselectstart=new Function ("return false");
  document.oncontextmenu=new Function ("return false");
  document.ondragstart=new Function ("return false");
}
else {
  if (window.sidebar) {
    document.onmousedown=disableselect;
    document.onclick=reEnable;
  }
}


function ObjectWrite() {
  var nav;
  nav = window.navigator.userAgent;
}


ObjectWrite();
-->


