<!-- Begin
var clickmessage="© Kathy Sawada. © Jim Sawada. © Kathy and Jim Sawada. All rights reserved.\n\nThese images are protected by copyright. They may be not be reproduced in any form or by any means, electronic or otherwise, without written permission from the artist."

function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert(clickmessage);
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
//  End -->
