var displaystring;
	<!-- Set up last updated date -->
	var updatedyear = 2010;
	var updatedmonth = 06;
	var updatedday = 14;
	<!-- Get current date -->
	var currdate = new Date();
	var curryear = currdate.getUTCFullYear();
	var currmonth = currdate.getMonth();
	var currday = currdate.getDate();
	//document.write("Year = " + curryear+", Month = " + currmonth+", Day = " + currday);
	//document.write("Date = " + currdate);
	<!-- work out the number of days between the two dates -->
	var updated = updatedyear * 365 + updatedmonth * 30 + updatedday;
	var curr = curryear * 365 + (currmonth +1) * 30 + currday;
	if ((curr-updated) <= 30) {
		displaystring= '<div align="center"><a href="News.asp"><img src="../Assets/Graphics/Update.gif" vspace="10" border="0"></a></div>'
		} else {
		displaystring = '<div align="center"><a href="News.asp"><img src="../Assets/Graphics/UpdateBlank.gif" vspace="10" border="0"></a></div>'
		}
	document.write(displaystring)