// JavaScript Document to create page footer
var writeFooter='';
var writeFooter1='';
//var user='nuf';
//var site='nufonline.co.uk';

writeFooter+='Reg.Charity 1040294';
writeFooter+='<br>';
writeFooter+='Email: ';
document.write(writeFooter);
user = "nuf";
site = "nufonline.org.uk";
document.write('<a href=\"mailto:' + user + '@' + site + '\">');
document.write(user + '@' + site + '</a>');

writeFooter1+='<span class="spacer">       </span>';
writeFooter1+='Web:<a href="http://www.nufonline.org.uk">www.nufonline.org.uk</a>';
writeFooter1+='<br><br>';
writeFooter1+='WebMaster: John Wilkinson';
writeFooter1+='<br>';
writeFooter1+='&copy; 1999-';
var mydate = new Date();
writeFooter1+=( mydate.getFullYear() ); 
writeFooter1+=' National Unitarian Fellowship';
writeFooter1+='<br>';
writeFooter1+='All rights reserved.';
writeFooter1+='<br>';
document.write(writeFooter1);
<!--
function getLongDateString()
{	//method defined on class Date.
	//Returns a date string of the form: DD Month,YYYY
	//(e.g. 27 September, 1998)
	monthNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
	dateOfMonth = this.getDate();
monthNo = this.getMonth();
	month = monthNames[monthNo];
year = this.getYear();
	if (year < 2000)
year = year + 1900;
dateStr = dateOfMonth+" "+month+", "+year;
	return dateStr;
}
//register the  method in the class Date
Date.prototype.getLongDateString=getLongDateString;

function DocDate()
{ //return the document modification date (excl.time)
//as a string
	DateTimeStr = document.lastModified;
	secOffset = Date.parse(DateTimeStr);
	if (secOffset == 0 || secOffset == null) //Opera3.2
			 dateStr = "Unknown";
	else
	{
		aDate = new Date();
		aDate.setTime(secOffset);
		//use method defined above
		datestr = aDate.getLongDateString();
	}
	return dateStr;
}

document.write(" Last Update:");
document.writeln(DocDate(),"");
document.write("<br><a href=\"http://www.34sp.com?r=129922\">Web Hosting</a>");
// -->



