function right(e)

{

var msg = "Reproduction of this image is strictly prohibited. This image is protected by DIGITAL WATERMARKING. All photographs and text which appear on the MelSamba website are the exclusive property of the Melbourne Samba School and are protected under Australian and International Copyright laws - Copyright 1997-2010 Melbourne Samba School - All rights reserved.";

if ((navigator.appName == 'Netscape' && e.which == 3) ||

    (navigator.appName == 'Microsoft Internet Explorer' &&

     event.button==2)) {

alert(msg);

return false;

}

else return true;

}

function trap() {

if(document.images)

for(i=0; i<document.images.length;i++)

document.images[i].onmousedown = right;

}