var displaystring;
	<!-- Set up last updated date -->
	var updatedyear = 2010;
	var updatedmonth = 01;
	var updatedday = 2;
	<!-- Get current date -->
	var currdate = new Date();
	var curryear = currdate.getYear();
	var currmonth = currdate.getMonth();
	var currday = currdate.getDate();
	<!-- 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)