<!-- 
var message="All content and images are © copyright of their respective owners \n\n Please to not attempt to copy or distribute these images";

document.oncontextmenu=new Function("alert(message);return false")

function InternetE4(){
	if (event.button==2){
		alert(message);
		return false;
	}
}
function Netscape4(e){
	if (document.layers||document.getElementById&&!document.all){
		if (e.which==2||e.which==3){
			alert(message);
			return false;
		}
	}
}
// --> 