﻿//JavaScript Document 
//Source: http://pubs.logicalexpressions.com/pub0009/LPMArticle.asp?ID=41
//Protecting Your Images on the Web by Vic Ferri

var message="Thank you for visiting ECO-PRAYER. Visit the RESOURCES page for related sites and photo resources. Photos may not be copied from this site due to copyright restrictions; please refer to the original sources on PHOTO CREDITS.";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;



