// JavaScript Document to create page footer
var writeFooter1='';
writeFooter1+='<span style="font-size:12pt;font-weight:bold;">Registered Charity No.1111295</span><br><br>';
writeFooter1+='Copyright &copy; 2007-10 Oldham Unitarian Chapel &amp; One World Centre';
writeFooter1+='<br>';
writeFooter1+='All rights reserved.';
writeFooter1+='<br>';
document.write(writeFooter1);
 function initArray() {
      this.length = initArray.arguments.length
      for (var i = 0; i < this.length; i++)
      this[i+1] = initArray.arguments[i]
   }
   var DOWArray = new initArray("Sunday","Monday","Tuesday","Wednesday",

                                "Thursday","Friday","Saturday");
   var MOYArray = new initArray("January","February","March","April",
                                "May","June","July","August","September",
                                "October","November","December");
   var LastModDate = new Date(document.lastModified);
   javascript:document.write("Last Updated ");
   javascript:document.write(DOWArray[(LastModDate.getDay()+1)],", ");
   javascript:document.write(MOYArray[(LastModDate.getMonth()+1)]," ");
   javascript:document.write(LastModDate.getDate(),", ",(LastModDate.getYear()));
   javascript:document.write(".");


