<!--
/***************************************
* 이미지 롤오버
***************************************/
function menuOn(imgEl) {
 imgEl.src = imgEl.src.replace(".gif", "_on.gif");
}

function menuOut(imgEl) {
 imgEl.src = imgEl.src.replace("_on.gif", ".gif");
} 


<!--
/***************************************
* 스크롤 탑 버튼
***************************************/
function test(no) {
 for(i=0; i<menu.length; i++) {
  if(i==no) menu[i].style.fontWeight = "bold";
  else menu[i].style.fontWeight = "normal";
 }
}

function wstatus(){
 window.status="www.iudc.co.kr"
}
setInterval(wstatus,100);

oncontextmenu="return false"

var isNS = (navigator.appName == "Netscape") ? 1 : 0;
var EnableRightClick = 0;
if(isNS) 
document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);

function mischandler(){
  if(EnableRightClick==1){ return true; }
  else {return false; }
}

document.oncontextmenu = mischandler;