document.write('<HR>');
document.write('<A HREF="index.htm">Footloose Festival Home Page</A>');
document.write('<HR>');
document.write('<ADDRESS>');
updated()
document.write('</ADDRESS>');

function updated() {
  document.writeln("Last Updated: ")
// Get the date that the requested URL (not this document) was modified
  document.writeln(document.lastModified + "<BR>")
}

function copyright(firstYear) {

	document.write('<ADDRESS>');
	myDate = new Date();
	var currentYear = myDate.getYear() ;
	if (currentYear < 1900) { currentYear += 1900 }
	document.write("&copy; copyright " + firstYear) ;
	if (firstYear != currentYear) {
		document.writeln(", " + currentYear) ;
	}
//  <!--#if expr="\"$DOCUMENT_URI\" = /review98\//" -->
//    document.writeln(" Phil Hobson ") ;
//  <!--#else -->
     document.writeln(" Matlock Footloose Festival and HCI Data Ltd") ;
//  <!--#endif -->
	document.write('</ADDRESS>');
}

