var message="All images and website content Copyright © Robert Leon. All rights reserved.\n\nAll images and website content cannot be duplicated, published, manipulated, or  distributed by any method or by any means and is strictly prohibited and protected by  international copyright law and are not to be taken from this website or used without written agreement with Robert Leon.\n\nAll images are protected by Digimarc tracking and encryption software containing digital watermarks and Creator ID's.\n\n";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false");
document.onselectstart=new Function("return false");
document.ondragstart=new Function("return false")