// JavaScript Document
// Code for Copyright Message ...
var today = new Date()
var thisYear = today.getYear()
// if (thisYear < 1900) { 
//   thisYear += 1900 

if (thisYear < 100)
	 {thisYear += 1934}
else
  if (thisYear < 1900)
	 { thisYear += 1900 }
	 // IE accurately returns current year, Netscape returns number of years since 1900 !!!!!!!  ??????
	 // IE for the Mac returns number of years since 1970 !!!! ?????
//}
var sCopyRight = "Copyright " + String.fromCharCode(169) + " " + thisYear + " Arleigh R. Kerr, All Rights Reserved"

var CopyRightFooting = "<span class='Footing'>" + sCopyRight + "</span>"
//var CopyRightFooting = thisYear

// Code for disabling right click ...
var message= "Sorry, right click disabled."// Message for the alert box
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;
