var clickmessage="This image is copyrighted and may not be taken without permission.\nIf you wish to link to this image from your web site, copy the URL from the address bar."
function disableclick(e){if (document.all){if (event.button==2||event.button==3){if (event.srcElement.tagName=="IMG"){alert(clickmessage);return false;}}}else if (document.layers){if (e.which == 3){alert(clickmessage);return false;}}else if (document.getElementById){if (e.which==3&&e.target.tagName=="IMG"){alert(clickmessage);return false;}}}
function associateimages(){for(i=0;i<document.images.length;i++) document.images[i].onmousedown=disableclick;}
function init_protect(){
if (document.all) document.onmousedown=disableclick
else if (document.getElementById) document.onmouseup=disableclick
else if (document.layers) associateimages()}
addOnLoad(init_protect);
