<!-- Right Click Protection For All Images -->
<***script language="JavaScript"***>
<!--                
  document.oncontextmenu = rightProtect;
  function rightProtect(e) 
{ if (window.event) 
{ var srcEl = event.srcElement ? event.srcElement : event.target; }
  else 
{ var srcEl = e.srcElement ? e.srcElement : e.target; }
  if (srcEl.tagName.toLowerCase() == 'img') {
  window.alert(rightClickWarning);
  return false; }
  else 
{ return true; } }

var rightClickWarning = "All images on this site are the sole property of David Huting unless otherwise noted and subject to protection under copyright and other intellectual property law.  All unauthorised use is prohibited.  Refer to the 'All Rights Reserved' link below.";
//-->
<***/script***>
<!-- End of Right Click Protection For All Images -->