<!--

document.onmousedown=check;
document.onmouseup=check;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=check;
window.onmouseup=check;

function check(r)
{  
   if (navigator.appName == 'Netscape' && (r.which == 2 || r.which == 3)) return false;

   else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
   {
    alert("Please do not copy these images. All images are Copyright Dan Holben.");
    return false;
   }

   return true;
}

-->