nn = (document.layers) ? 1:0;

if (nn) {
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown = checkMouse;
}

function checkMouse(evnt) {
	if (nn) { cliked = evnt.which; } else { cliked = event.button; }
	if (cliked>=2) {
		alert("This image is for viewing only and is not to be downloaded.\n\nFor information regarding use of this photograph, please contact Eric Lawton\nat (310) 553-5990 or by email at info@ericlawtonphotography.com.\n\nAll images and text on this website are the exclusive property of Eric Lawton\nand are protected under United States and International copyright laws.");
		return false;
	} else { return true; }
}

