document.onmousedown = ieDisable;

copyright = new Date();
update = copyright.getFullYear();

message = "Copyright " + update + " First Baptist Church of DeKalb.  WARNING! All content contained within this site is protected by copyright laws.  Unauthorized use of our material is strictly prohibited.";

function ieDisable(e){
	
	if (e == null){ 
	  e = window.event;
  	  if (e.button==2){
    	alert(message);
    	return false;
      }
    }
	
document.onclick = ffDisable;

}

function ffDisable(e){
if (e.button==2){ 
  e.preventDefault();
  e.stopPropagation();
  alert(message);
  return false;
  }
}

