<!--
var copyrightMessage = "Deze afbeelding is auteursrechtelijk beschermd.";

function ProtectImg(img) { 
  img.galleryimg = "no"; 
  img.ondragstart = function () { return false; }
  img.onmousedown = function (e) {
    if( e && e.preventDefault ) { e.preventDefault(); }
    if( document.all ) { if( event.button == 2 ) { alert(copyrightMessage); return false; } }
    else { if( e.which == 3 ) { alert(copyrightMessage); return false; } }
  }
  img.oncontextmenu = function () { return false; } 
}
//-->