document.ondragstart = def;
//запрет на перетаскивание 
document.onselectstart = def;
//запрет на выделение элементов страницы
document.oncontextmenu = def;
//запрет на выведение контекстного меню
function def() {
return false
}

function notmenu() { window.event.returnValue=false; }

var mymessage = "Sorry! Copyright protection!";
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
}
 function rtclickcheck(keyp){
  if (document.layers && keyp.which != 1) {
    alert(mymessage);
    return false;
  }
  if (document.all && event.button != 1) { 
    alert(mymessage);
    return false;
  }
}
document.onmousedown = rtclickcheck
