function protect(e) {
alert("Sorry, you don't have permission to  copy this image. Please contact Windsor Research Centre.");
return false;
}

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

