<!--
<!--

var message="The images on this site are protected. The top-right corner Fishing Print is the property of Rodd C. Umlauf.  Unauthorized reproduction of any part of this artwork without written permission may result in criminal penalties.   Please visit www.umlaufstudio.com to view the original works of art.  All rights reserved. Copyright © 1997-2004." 

// 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;

// --> 
