<!--

ie4 = (document.all) ? 1:0;
ns4 = (document.layers) ? 1:0;

function mouseDown(e) {
	if ((ns4 && e.which==3) || (ie4 && event.button==2)) {
		alert("Copyright 1997-2002 row2k media.\nWe're sorry, but these photos may not be copied\nwithout the written permission of the photographer\nor row2k.com.");
		return false
	}
	return true;
}

function init() {
	document.onmousedown = mouseDown
	if (ns4) document.captureEvents(Event.MOUSEDOWN)
}

//onload = init
init();

// -->

