function attachEvents() {
	var hasProtected = false;
	var imgs = document.getElementsByTagName('img');
	for (var i=0; i<imgs.length; i++) {
		//if(imgs[i].getAttribute('rel') == 'protected') {
			hasProtected = true;
			imgs[i].oncontextmenu = function() { showWarning(); return false; };
		//}
	}
	if (hasProtected) {
		document.onkeyup = detectPrtScr;
	}
}
function showWarning() {
	alert('Op het materiaal van Kunstgalerie Arnold berust auteursrecht. Het gebruik door derden zonder toestemming is niet toegestaan.'); } function detectPrtScr(e) {
	if (!e) var e = window.event;
	if (e.keyCode && e.keyCode == 44) {
		showWarning();
		return false;
	}
}


window.onload=attachEvents;
document.onselectstart = function () { return false; } // ie
document.onmousedown = function () { return false; } // mozilla
