function protect(e) {
	if (event.button==2){
//		alert('Copyright © 1994 by Ralph Broström\nAll rights reserved');
	}
	return false;
}

function trap() {
	with(document){
		if(images){
			for(i=0;i<images.length;i++)
				images[i].onmousedown = protect;
		}
	}
}
