<!--//

<!-- ÄÁÅÙÃ÷ º¹»ç¹æÁö : Start -->
function disableselect(e){
return false
}

function reEnable(){
return true
}

// IE4+ ¿ë ÄÚµå
document.onselectstart=new Function ("return false");
document.oncontextmenu=new Function ("return false");

// NS6 ¿ë ÄÚµå
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
<!-- ÄÁÅÙÃ÷ º¹»ç¹æÁö : End -->

//-->