<!--
	var clickmessage = "All images © 2005 Steve Marsel Studio, Inc. All photographs on this web site are registered with the U.S. Copyright Office and may not be downloaded without permission. Do the right thing - ask before downloading. All visits to this site are logged.";

	function disableClick(e) {
		if (document.all && (event.button==2 || event.button==3) && event.srcElement.tagName=="IMG") {
			alert(clickmessage);
			return false;
		} else if (document.layers && e.which == 3) {
			alert(clickmessage);
			return false;
		} else if (document.getElementById && e.which==3 && e.target.tagName == "IMG"){
			alert(clickmessage)
			return false
		}
	}

	function associateImages(){
		for(i=0; i<document.images.length; i++) {
			document.images[i].onmousedown = disableClick;
		}
	}

	if (document.all) document.onmousedown = disableClick;
	else if (document.getElementById) document.onmouseup = disableClick;
	else if (document.layers) associateImages();
//-->