 
  
// JavaScript External File: NoCopyScript.js
// This file will disable the Right Mouse Button, disabling the user to save images

 
 var Xoffset= -60;    // modify these values to ...
 var Yoffset= 20;    // change the popup position.
 
 var nav,old,iex=(document.all),yyy=-1000;
 if(navigator.appName=="Netscape"){(document.layers)?nav=true:old=true;}
 
 var message="Sorry, this function has been disabled. Ask me first before even thinking about copying anything on this page!";
 function click(e) {
 if (document.all) {
 if (event.button==2||event.button==3) {
 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;
