<!--

// NO HTML TAGS -- Just a .js file between the <script> tags.

// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// Don't delete this header!

var noclick_message="Sorry, that function has been disabled.\n\Images should NOT be taken from this site without permission.  Thank You"; // Message for the alert box

function click(evt) {

	// if IE
	if (document.all) {
		// checks the event object to see which button was selected (2 is right button)
		if (event.button == 2) {
			alert(noclick_message);
			return false;
		}
	}

	// if Netscape
	//if (document.layers) {
	  if (document.getElementById) {
		// checks the event object to see which button was selected (3 is right button)
		if (evt.which == 3) {
			alert(noclick_message);
			return false;
		}
	}
}


// if Netscape 
//if (document.layers) {
if (document.getElementById) {
	// instructs the browser to grab events of a specfic type before they reach their
	// intended target objects.  (the document in this case.)
	// multiple events per object can be done like this:
	//              document.captureEvents(Event.KEYPRESS, Event.MOUSEMOVE)
	//				text.captureEvents(Event.CHANGE, Event.KEYDOWN)
	document.captureEvents(Event.MOUSEDOWN);
}

// defines a function to handle the event that we defined in the captureEvents
document.onmousedown=click;

// --> 

