// to send copyright message
var message="These pictures are Copyright protected";
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
}
document.onmousedown=click;
// --> 



