am = "Contact Jill Leite for permission to use images and code for this site";

bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"

function nrc(e) {
   if (bNS && e.which > 1){
      alert(am)
      return false
   } else if (bIE && (event.button >1)) {
     alert(am)
     return false;
   }
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

//this is for the last updated part of the home page
function myUpdate(){
	var month_names = new Array ( );
	month_names[month_names.length] = "January";
	month_names[month_names.length] = "February";
	month_names[month_names.length] = "March";
	month_names[month_names.length] = "April";
	month_names[month_names.length] = "May";
	month_names[month_names.length] = "June";
	month_names[month_names.length] = "July";
	month_names[month_names.length] = "August";
	month_names[month_names.length] = "September";
	month_names[month_names.length] = "October";
	month_names[month_names.length] = "November";
	month_names[month_names.length] = "December";

if (Date.parse(document.lastModified) !=0)
testdate = new Date(document.lastModified);
  document.write('<p><strong>Last Updated: '
		+ month_names[testdate.getMonth()]
		+"&nbsp;"
		+ [testdate.getDate()]
		+ ", "
		+ [testdate.getFullYear()]
		+ '</strong></p>');
	}