function protimg(){
  for(var i=0; i<document.images.length; i++){
    imgel = document.images[i];
    msg = "Данная функция заблокирована.";
    iex=(document.all);
    nav=(document.layers);
    n_6=(window.sidebar);

    if(nav) imgel.captureEvents(event.mousedown);
    if(n_6) imgel.addEventListener("mousedown",no_click,true);
    imgel.onmousedown=no_click;
  }
}

function no_click(e){
  if((nav||n_6) && (e.which==2 || e.which==3)) {
    alert(msg);return false;
  } else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
    alert(msg);return false;
  }
}