var baseURL = "http://www.main-family.com/";

function address() 
{
var ModDate = new Date (document.lastModified);

var MonthNames = new Array ('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');

document.write('<FONT SIZE="3" COLOR=""><BR><BR>');
document.write('<A HREF="#top">Back to Top</A>');
document.write('<BR>');
document.write('<A HREF="' + baseURL + '">Home</A>');
document.write('<BR><BR></FONT>')

document.write('<ADDRESS>');
document.write('<FONT SIZE="2"><B>Created and Maintained by ');
document.write('<A HREF="mailto:janice@main-family.com">Janice</A><BR>');
document.write('Copyright &copy 2001-2010. All Rights Reserved.<BR>');
document.write('Last Revised: ');
document.write(MonthNames[ModDate.getMonth()]);
document.write(' ');
document.write(ModDate.getDate());
document.write(', ');
document.write(convertYear(ModDate.getYear()));
document.write('<BR>');
document.write('</ADDRESS>');
}

function convertYear(x)
{
	var y = x % 100;
	y += (y < 38) ? 2000 : 1900;
	return y;
}