//Scripts Created &/or Modified By Amy Juelich


//********************************************** No Copy Function 

// works in IE, NS
// will disable the context menu as well as the copy & paste functionality
var enableNoCopy = true;

document.oncontextmenu = enforceNoCopy;
//document.ondragstart = enforceNoCopy;
document.onselectstart = enforceNoCopy;

function enforceNoCopy(e){
	if (enableNoCopy){
		alert("All documentation and images are copywright protected. \n In order to copy from this site,\n contact American Warehouse Systems to obtain permission. \n\n Toll Free: 877-677-9066 \n Email: info@aw-systems.com");
		return false;
	}
}


//******************************************** End No Copy


