<!--
/**************************************************************************
*	FILENAME:		No_Right_Click.js
*	
*	PURPOSE:		To prevent someone from right clicking to copy stuff
*	
*	AUTHOR:			Larry Juncker - ALJ Computer Services, LLC
*					http://www.aljnet.net
*					webmaster@aljnet.net
*	
*	DATE CREATED:		
*	
*	FILE UPDATE HISTORY:
*	
****************************************************************************/


// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// Don't delete this header!

// Message for the alert box below - edit as needed
var message="Sorry, that function is disabled.\n\nContents & Graphics Copyrighted by\n\n ALJ Computer Services, LLC\n\nor the Original Artists\nOur work is not Public Domain\nImages and Text protected!\n\nALL RIGHTS RESERVED";

// Don't edit below!
function click(e) {
if (document.all) {
if (event.button == 2) {
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;

-->