
function NoRightClick(e) 
 {
  Message = 'all images on this site are Copyright 2000 - 2010 Fritz Schiemann';

  if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)) 
    {       alert(Message);   return false;   }
  else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button==2 || event.button == 3))
    {       alert(Message);   return false;   }
  return true;
  }


