
var message="Thanks for your interest. \n\nFor a copy of this file, please make a PayPal donation of $0.50 to l.e.hawkins@gmail.com. For a high resolution image, please make a PayPal donation of $2.50 to l.e.hawkins@gmail.com. Once your payment is processed, you will recieve your file via email. \n\nThank you for your support."

///////////////////////////////////
function clickIE() {
	if (document.all) {
		alert(message);
		return false;
	}
}
function clickNS(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=clickNS;
}else{
	document.onmouseup=clickNS;
	document.oncontextmenu=clickIE;
}

if(!document.all) {
	document.oncontextmenu=new Function("return false");
}