var today = new Date();
var year = today.getFullYear();
var rclickmsg="Right click mouse button functions have been disabled.\nThis site is Copyrighted "+ year + " by\n JAVA Reservations and GetAwayNetwork, Inc.\nImages and Text protected!\nALL RIGHTS RESERVED"; 
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}

function protect(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(rclickmsg);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(rclickmsg);
			return false;
		}
	}
}
document.onmousedown=protect;

