function protect(e) {
	alert("Sorry, image clicking has been blocked to help stop the redistribution of these images.");
	return false;
}

function trap() {
	if(document.images)
		for(i=0;i<document.images.length;i++)
			document.images[i].onmousedown = protect;
}
