function protect(e) 
{ 
	if (event.button == 2)
	{
		var current = new Date();
		alert("© " + current.getFullYear() + " kjlyons.com"); 
		return false; 
	}
} 

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