<!--

/*
	echo '<script type="text/javascript" language="javascript" src="mouse.js"></script>';
	// insert above and this into <BODY oncontextmenu='return false;'> tag;
*/ 

// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// Don't delete this header!

var message =" Some Content Images and/or Text Copyright © 1999-2009 \n by the Original Contributors and/or others.\n\n ***   REGISTERED USERS May Download Images for \"Fair Use\" Teaching   ***\n\nCopyrighted material may not be distributed or copied \n without the explicit permission of the original copyright holders.\n\nPlease be academically honest. \n\n You may request information directly from the Contributor \n\n or use the [Feedback Form] to Contact MedPix.    \n\nAppropriate Byline/photo/image credits are kindly requested."; // Message for the alert box

// 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;
// -->
