/*  This script inserts the year if the current year as later than 2005 - intended for use in updating copyright dates */
var theDate=new Date()
						
if(theDate.getFullYear() != 2005) {

	document.write("- " + theDate.getFullYear())
	
}  //  End if
