// disables right mouse clicks
function DisableRightMouseClick(obj){
	if(obj == 1)
	{message = "Logo is copyrighted and restricted. Any unauthorized use is forbidden and subject to criminal prosecution.";}
	else if(obj == 2)
	{message = "The use of images on this website without authorization is prohibited.";}
	else{message = "Use of the agency name and likeness of name is restricted. Any unauthorized use is forbidden and subject to criminal prosecution.";}
	
	if(document.all){if(event.button == 2){alert(message); return false;}}
	
	if(document.layers){e = document.captureEvents(Event.MOUSEDOWN);
	if(e.which == 3){alert(message); return false;}}}


