// JavaScript Document
//====================PRINT THE FOOTER========================

/*
This is a new JavaScript document for use in embedded application  
contexts.
Source is ©1998 the Regents of the University of California
Written by:  George H. Michaels, PhD.
Instructional Consultation, University of California Santa Barbara
http://www.id.ucsb.edu/IC/ Modified: 02SEP04 - George H. Michaels

*/
var monthArray = new  
Array('January','February','March','April','May','June','July','August','September','October','November','December');
var daysArray = new  
Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

function printModDate() {
var modifyDate = new Date(Date.parse(document.lastModified));
document.write(daysArray[modifyDate.getDay()]+",  
"+monthArray[modifyDate.getMonth()]+" "+modifyDate.getDate()+",  
"+modifyDate.getFullYear());
}

function printFooter(authorEmail) {
var modifyDate = new Date(Date.parse(document.lastModified));
document.write('<TABLE width=500 align=right>');
document.write('<TR>');
document.write('<TD align=right>');
document.write('<HR>');
document.write('<FONT COLOR="#666666" FACE="Helvetica, arial,  
sans-serif" SIZE=1>');
if (document.URL == "http://www.id.ucsb.edu/IC/Main_Frame.html") {
document.write('<A HREF="./OICText.html" TARGET="_parent">');
document.write('[Non-Graphical Browsers]</A><BR>');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;URL:  
http://www.id.ucsb.edu/IC/');
}
else {
document.write('&nbsp;&nbsp;&nbsp;&nbsp;URL: '+document.URL);

}
document.write('<BR>');
document.write('Contents developed by the <A  
href="http://www.id.ucsb.edu/IC/" target="_parent">Office of  
Instructional Consultation, UCSB</A>.');
document.write('<BR>');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;Comments to web author: ');
document.write('<A href="mailto:'+authorEmail+'">'+authorEmail+'</A>');
document.write('<BR>');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;All contents ');
document.write('<A  
href="http://www.id.ucsb.edu/IC/Copyright.html">copyright &copy;</A>');
document.write('1995-'+modifyDate.getFullYear()+',');
document.write('<BR>&nbsp;&nbsp;&nbsp;&nbsp;The Regents of The  
University of California.');
document.write('<BR>&nbsp;&nbsp;&nbsp;&nbsp;All rights reserved.');
document.write('<BR>&nbsp;&nbsp;&nbsp;&nbsp;Revised: ');
printModDate();
document.write('</FONT><BR></TD></TR></TABLE>');
}

/*=================END OF PRINT THE FOOTER==========================*/