https://www.codeproject.com/Articles/11222/Disabling-the-right-click-on-web-page
<head>
<script language="javascript"> document.onmousedown=disableclick; status="Right Click Disabled"; Function disableclick(e) { if(event.button==2) { alert(status); return false; } } </script>
<body oncontextmenu="return false">
# 적용위치
1. 부분적용
작품갤러리 : widget/xenara/~.html
2. 레이아웃전체
/common/common_layout.html
<header >
<scrypt> ... </scrypt>
<body oncontextmenu="return false" > line : 80