function protect() {
	alert("Vous n'avez pas la permission de copier cette image! You don't have the permission to copy this image!                          Diese Bild kopieren ist verboten!");
	return false;
	}

function trap() {
	if(document.images)
		for(i=0;i<document.images.length;i++)
			document.images[i].onmousedown = protect;
	}

window.onload=trap;

