<!--
// Disables right clicks on images and such........
// 

function disable_clicks(e){
return false
}
function enable_clicks(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disable_clicks
document.onclick=enable_clicks
}

var message="";

function rclickIE() {
	if (document.all) {
		(message);
		return false;
	}
}
function rclickNS(e) {
	if (document.layers||(document.getElementById&&!document.all)) {
		if (e.which==2||e.which==3) {
			(message);
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=rclickNS;
	} else { 
	document.onmouseup=rclickNS;
	document.oncontextmenu=rclickIE;
	}
document.oncontextmenu=new Function("return false")
//-->

<!--
function right_click(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("Content and Images Copyright © Property Transfer Services, Inc.");
return false;
}
return true;
}

document.onmousedown=right_click;
document.onmouseup=right_click;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right_click;
window.onmouseup=right_click;
//  End -->
