function mouseCatcher(){
	if (event.button==2){
		alert("This information is copyright protected!");
		}
}
document.onmousedown = mouseCatcher;
