/*-- DO NOT REMOVE - This file contains the footer for all of the MIP pages */
/* The copywrite date needs to be updated in this file yearly. */

function showTouchDate() {
       var mdate = new Date(document.lastModified);
       var months = new Array("January", "February", "March", "April",
"May", "June", "July", "August", "September", "October", "November",
"December");
       var year = mdate.getYear();
       if(year < 1000) year += 1900;
       return (months [mdate.getMonth()] + " " +  mdate.getDate() + ", " +
year);
    };

document.write("<table width='800' border='0' cellpadding='0' cellspacing='0'><tr><td><p>For feedback regarding this site, contact " + contactName +" at <a href='mailto:" + emailAddress +"' >" + emailAddress + "</a>.<br />&copy Copyright 2008 by College of Veterinary Medicine &amp; Biomedical Sciences<br />Colorado State University. All Rights Reserved.</p></td><td align='right'><p><a href='http://www.admissions.colostate.edu/'>Apply to CSU</a> |&nbsp;<a href='http://www.colostate.edu/info-disclaimer.aspx'>Disclaimer</a>&nbsp;| <a href='http://www.colostate.edu/info-equalop.aspx'>Equal Opportunity</a>&nbsp;| <a href='http://www.colostate.edu/info-privacy.aspx'>Privacy Statement</a><br />Updated:  " + showTouchDate() + "</p></td></tr></table>");


