<!-- Protect images from right click copy
function protect(e) {
alert("Sorry, you do not have permission to access this image. See the HBRF site Legal Notice");
return false;
}
function trap() 
{if(document.images)
	for(i=0;i<document.images.length;i++)	{	
		srcstr=document.images[i].src
		gifimage=srcstr.search(".gif")
		if (gifimage < 0 ) {document.images[i].onmousedown = protect}
		}
}
