// Formatted last-modified date
// if (Date.parse(document.lastModified) != 0) {  ** removed the condition
  var modiDate = new Date(document.lastModified);
  var modiYear = modiDate.getYear();
  modiYear = (modiYear < 2000) ? modiYear + 1900 : modiYear;
  var monthName = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");

document.write("Copyright &copy; Lewes Passion Play Group "+modiYear);
document.write("; last update  " +modiDate.getDate() +" "+ monthName[modiDate.getMonth()] + " " + modiYear + " (v3.0)");
//  };

document.write("<br />This website has links to external sites. Links are provided in good faith but we have no responsibilty for their content."
+"<br />Provided by <a href='http://www.informationspan.com' target='_new'><font color='#407509'>InformationSpan</font></a>, the IT Insight Services consultancy");
// based on Jim Dettwiler  http://www.icehouse.net/jim_d/
// note the lastModified code does not work on Safari on the local server, but is OK via web (it appears)

