function Is(){agent=navigator.userAgent.toLowerCase();this.major=parseInt(navigator.appVersion);this.minor=parseFloat(navigator.appVersion);this.ns=((agent.indexOf('mozilla')!=-1)&&((agent.indexOf('spoofer')==-1)&&(agent.indexOf('compatible')==-1)));this.ns4=(this.ns&&(this.major==4));}
function MakeArray(n){this.length=n;return this;}
function customDateString(){monthNames=new MakeArray(12);monthNames[1]="January";monthNames[2]="February";monthNames[3]="March";monthNames[4]="April";monthNames[5]="May";monthNames[6]="June";monthNames[7]="July";monthNames[8]="August";monthNames[9]="September";monthNames[10]="October";monthNames[11]="November";monthNames[12]="December";return monthNames[this.getMonth()+1]+' '+this.getDate()+', '+this.getFullYear();}
Date.prototype.getLongFormat=customDateString;
function printLogo(){var is=new Is();if(!is.ns4){document.write('<div id="printLogo"><img alt="Luther College" border="0" height="50" src="http://www.luther.edu/style/print_logo.gif" width="267"></div>');}}
function displayCopyright(){var today=new Date();document.write('<p><span class="footercopyright">Copyright &copy; '+today.getFullYear()+' Luther College</span></p>');}
function displayURL(){var today=new Date();document.write('<p id="printURL">Retrieved '+today.getLongFormat()+' from <a href="'+document.URL+'">'+document.URL+'</a></p>');}
