// JavaScript Document
/*
	* DHTML Menu version 3.3.19
	* written by Andy Woolley
	* Copyright 2002 Andy Woolley. All Rights Reserved.
	*
	* Please feel free to use this code on your own website free of charge.
	* You can also distribute and modify this source code as long as this
	* Copyright notice remains intact and that you send me notice that you
	* intend to use this code on your website. 
	*
	* Limited support for this script is provided
	* Commercial licence agreements are available on request for use & full support.
	* You can send email to menu3@milonic.com 

	* Script featured on Dynamic Drive (http://www.dynamicdrive.com)
	*/
var msg="The copying of files from this site has been disabled.";
function disableIE() {if (document.all) {alert(msg);return false;}
}
function disableNS(e) {
  if (document.layers||(document.getElementById&&!document.all)) {
    if (e.which==2||e.which==3) {alert(msg);return false;}
  }
}
if (document.layers) {
  document.captureEvents(Event.MOUSEDOWN);document.onmousedown=disableNS;
} else {
  document.onmouseup=disableNS;document.oncontextmenu=disableIE;
}
document.oncontextmenu=new Function("alert(msg);return false")

