<!--

function getYear()
{
year = new Date().getYear();
if (year < 2000)
   year = year + 1900;
dateStr = year;
return dateStr;
}

//****************************************************************************************************
// This script displays the copyright message at the bottom of each page.
//****************************************************************************************************
document.write('<CENTER>');
document.write('<img src="images/email.gif" border=0 galleryimg=no><BR>');
document.write('<BR>');
document.write('<b>Official website of the White Arrow Spiritualist Church. All rights reserved.<BR>The copyright to Ann Walker and White Arrow\'s work is held with Joyce Walker © 1990-'+getYear()+'</b>');
document.write('<HR SIZE=1 NOSHADE WIDTH=760 COLOR="black">');
document.write('</center>');

-->