// JavaScript Document
      var cmsg = "© All images and documentation is the property of www.lensmeister.com and cannot be used elsewhere without the express consent and written authorisation from lensmeister.com."; 
      if(document.layers) window.captureEvents(Event.MOUSEDOWN); 

      function no_click(e){ 
      if (navigator.appName == 'Netscape' && ( e.which == 2 || e.which == 3)) 
      { 
      alert(cmsg);return false; 
      } 
      if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 
      2 || event.button == 3)) 
      { 
      alert(cmsg);return false; 
      } 
      }  
      window.onmousedown=no_click; 
      document.onmousedown=no_click; 