<!-- Begin 1
// No rightclick script.
// Do not delete this header!
var message="Sorry, you don't have permission to copy this file.";
// Put your message for the alert box between the quotes.
// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// End 1-->
<!-- Begin 2
function protect(e) {
alert("Sorry, you don't have permission to copy this image file.");
return false;
}

function trap() {
if(document.images)
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown = protect;
}
// End 2 --> 

