document.onmousedown = checkClick
if (document.layers){
	document.captureEvents(Event.MOUSEDOWN)
}

function checkClick(ev) {
	if (navigator.appName == "Netscape"){
		if (ev.which != 1) {
			alert("All Images Are Property of the Photographer. Written Permission Must be Granted For Use. Thank You --- Profotos.com")   // You can delete this line if you want
			return false
		}	
	}
	else{
		if (event.button != 1){
			alert("All Images Are Property of the Photographer. Written Permission Must be Granted For Use. Thank You --- Profotos.com")   // You can delete this line if you want
			return false
		}
	}
}
