/*********************************************
JavaScript Code

Author: RIT and Brendan Parker
Project: TRiO
Date: August 2007
Function: Displays the footer
*********************************************/

var mod = document.lastModified; // MM/DD/YYYY HH:MM:SS
var cut = mod.length-8;          // Restricts code to MM/DD/YYYY only

document.write("<table width='100%' border='0'><tr><td bgcolor='#104E46' height='2px'></td></tr>");
document.write("<tr><td>");
document.write("<font face='Geneva, Arial' size='2' color='#CCCCCC'>Rochester Institute of Technology<br /></font>");
document.write("<font face='Geneva, Arial' size='1' color='#CCCCCC'><br />Last Updated: ");
document.write(mod.substring(cut, 0));
document.write("<br />");

document.write("Copyright © 2007-2008 Rochester Institute of Technology. All Rights Reserved<br />");
document.write("Designed by Brendan Parker<br />");
document.write("<a href='http://www.rit.edu/ask'>Questions/Feedback</a> | ");
document.write("<a href='http://www.rit.edu/disclaimer.html'>Disclaimer</a> | ");
document.write("<a href='http://www.rit.edu/copyright.html'>Copyright Infringement</a>");
document.write("</font><br /><br />");
document.write("</td></tr></table>");





