<!--

ie4 = (document.all) ? 1:0;
ns4 = (document.layers) ? 1:0;

function mouseDown(e) {
	if ((ns4 && e.which==3) || (ie4 && event.button==2)) {
		alert("Copyright 2004-2009 OarSpotter.com.\nWe appreciate your interest in these images,\nbut they required a great deal of hard work.\nSubject to US Copyright law, they may not be\nreproduced by any means without permission.\nIf you'd like copies simply email the webmaster\nand ask to use them or re-draw them yourself.\nThank you.");
		return false
	}
	return true;
}

function init() {
	document.onmousedown = mouseDown
	if (ns4) document.captureEvents(Event.MOUSEDOWN)
}

//onload = init
init();

// -->
