function right(e) {
	var msg = "Copyright 2006 Lace Curtain Liza, Inc. All rights reserved. All drawings and images are protected under Copyright Law. Any unauthorized use is strictly prohibited. Contact us at lmorado@harbornet.com for more information.";
	if (navigator.appName == 'Netscape' && e.which == 3) {
		alert(msg);
		return false;
	}
	if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
		alert(msg);
		return false;
	} else return true;
}

function trap() {
	var images = document.getElementsByTagName("img");
	var i;
	for(i=0;i<images.length;i++) {
		images[i].onmousedown = right;
		//document.images[i].onmouseup = right;
	}
}

window.onload = trap;
