var msg = "Welcome to A Place of Worship"
if (navigator.userAgent.indexOf("Netscape") != -1) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown = trapClick
function trapClick(ev) {
	if (document.all) {
		if (event.button == 2) {
			alert(msg);
			return false;
		}
	}
	if (navigator.userAgent.indexOf("Netscape") != -1) {
		if (ev.which == 3) {
			alert(msg);
			return false;
		}
	}
}
