var today = new Date();
var year = today.getFullYear();
var rclickmsg="This site is Copyrighted "+ year + " by\n JAVA Reservations and GetAwayNetwork, Inc.\nImages and Text protected!\nALL RIGHTS RESERVED"; 

function protect(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(rclickmsg);
			return false;
		}
	}
	var thisObj = e.currentTarget;
	if (e.button == 2) {
		alert(rclickmsg);
		e.preventDefault();
		e.stopPropagation();
		return false;
	}
	if (e.which == 3) {
		alert(rclickmsg);
		e.preventDefault();
		e.stopPropagation();
		return false;
	}
}
$('html').bind("down",protect)
//addEvent(document,"mousedown",protect);

