/* 
	125.js - Brian Daley
	Inserts 125th logo into a webpage
	
	Usage: Place the folowing script tag in the body of your document
	
	<script language="javascript1.5" type="text/javascript" src="http://www.uconn.edu/js/125.js"></script>
*/


// Get the current year
var myDate = new Date();
var yr = myDate.getFullYear();


// HTML code for the 125th Logo
var html = "<div style=\"display:inline; position:absolute; background-color:#000066; right:0px; top:0px;\">" +
			"<a href=\"http://www.uconn.edu/125/\" target=\"_blank\">" +
			"<img src=\"http://www.uconn.edu/images/125_white_small.gif\" width=\"64\" height=\"78\"" +
			"border=\"0\" alt=\"125th Anniversary Website\"></a></div>";


// If current year is 2005 || 2006, display the logo
if((yr === 2005) || (yr === 2006)){
	document.write(html);
}
