
//code for showing the date the web page was last modified.  Updates automatically
<!-- Begin
	function MakeArray(n) {
		this.length=n
		return this
	}
	monthNames = new MakeArray(12)
	monthNames[1] = "January"
	monthNames[2] = "February"
	monthNames[3] = "March"
	monthNames[4] = "April"
	monthNames[5] = "May"
	monthNames[6] = "June"
	monthNames[7] = "July"
	monthNames[8] = "August"
	monthNames[9] = "September"
	monthNames[10] = "October"
	monthNames[11] = "November"
	monthNames[12] = "December"
	
	function customDateString(onedate)
	{
		var theMonth = monthNames[onedate.getMonth() + 1]
		var theYear = onedate.getYear()
		if (navigator.appName == "Netscape") 
		{ 
		var theYear = onedate.getYear() + 1900
		} 
		else  
		{
		if (navigator.appName == "Microsoft Internet Explorer")
		{
		var theYear = onedate.getYear() 
		}
		}
		return onedate.getDate() + " " + theMonth + ", " +  theYear;
	}
	
	//writes page footer
	function writefooter ()
	{
	document.write('<font size="1" color="#528410" face="Arial, Helvetica, sans-serif">The New Zealand Institute for Crop &amp; Food Research Limited, the New Zealand Asparagus Council and Utah State University have exercised reasonable skill, care and diligence in the development of this website, but shall not be liable for the commercial performance of any products or for any losses arising from the use of the information contained herein<br> <br> &copy; 2000-2003 The New Zealand Institute for Crop &amp; Food Research Limited, Private Bag 4704, Christchurch, New Zealand</font>');
	document.write('<br>');
	//get last modified date and then format it
	document.write('<br>');
	document.write('<font size="1" color="#528410" face="Arial, Helvetica, sans-serif">Last updated: ');
	var lmdate= new Date(document.lastModified);
	document.write(customDateString(lmdate)); 
	document.write('</font>');
	}
	

//  End -->
