// MOUSE RIGHT-CLICK COPYRIGHT NOTIFICATION.
// Copyright © 1996-Now Bob Oudyk, Author - Publisher. All rights reserved.
var now = new Date();
var message = 'Copyright (C) 1996-'+now.getFullYear()+' InsideTheBible.NET\n\nAll rights reserved worldwide!';
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;
// You must include the copyright line(s), if you intend to use or distribute any part of this code.