이것은 오른클릭, 드래그, 셀렉트 막는 방법
<body oncontextmenu="return false" ondragstart="return false" onselectstart="return false">
이것은 이미지에서 저장하는 박스 안뜨게 하는 방법(2가지) 메타 태그를 이용하는 방법
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
이미지 속성을 이용하는 방법
<IMG SRC="map.gif" GALLERYIMG="no">
javascript를 이용하는 방법
window.onload = function() {
document.onselectstart = new Function("return false");
document.oncontextmenu = new Function("return false");
document.ondragstart = new Function("return false");
}