
// JavaScript External File: FScript.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="If you want to use any of these pictures, contact me.";

 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;
