<!--
var hosturl = new String(document.location.hostname);
    hosturl = hosturl.toLowerCase();
var      bd_rcb = '';
var      bd_datetime_correctYear = 2008;  // Initialized with the year this routine was worked on.
var      yearestablished=2005;
var      owner='Old Arlington, Inc., Jacksonville, Florida';
var      wwwDomainname='OldArlington.org';
var      devReceiver = 'gcstanlib'; // &#105;&#110;&#102;&#111; or gcstanlib
var      devReceiverDomainname = 'hotmail.com'; // or hotmail.com or yahoo.com: &#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;
//var      devReceiverDomainname = 'hotmail.com'; // or hotmail.com or yahoo.com: &#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;
var      wwwReceiver = 'gcstanlib'; // &#105;&#110;&#102;&#111; or gcstanlib
var      wwwReceiverDomainname = 'hotmail.com'; // or yahoo.com: &#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;
// e-mail format for dev:
//var      devcontact='&#109;&#97;&#105;&#108;&#116;&#111;&#58;'+devReceiver+'&#64;'+devReceiverDomainname+'?subject='+wwwDomainname+' Website%20visitor&amp;Body=Hello,%20I%20visited%20the%20'+wwwDomainname+'%20website." title="Click to send e-mail">&#71;&#67;&#83;&#45;&#82;&#83;&#83;';
//var      line='<a onmouseover="window.status=\' \';return true;" href="'+devcontact+'</a>';
// website format
var      devcontact='http://www.gcsrss.com" title="Click to visit website">&#71;&#67;&#83;&#45;&#82;&#83;&#83;';
var      line='<a onmouseover="window.status=\' \';return true;" target="_blank" href="'+devcontact+'</a>';

// Use the same information for all processing, i.e., Date().  Otherwise, the
// information displayed could be inaccurate if one instance was used for one
// part and another instance was used for the second part.
var      bd_datetime_now = new Date();
// Some versions of JavaScript may not return the correct year.  If the year is less than 2000,
// only the last 2 digits might be returned.  For example, a PC without a battery will
// boot with the date set to January 1st, 1980.  This routine could show 80 for
// the year instead of 1980.  This must be an issue with the getYear() routine and may not
// exist in your version.  Regardless, the year returned is checked first.  If it is 2 digits,
// then it is checked to see if it is less than 80.  If so, then it is a PC running in the 21st
// century with a bad JavaScript getYear so 2000 is added otherwise 1900 is added.  Finally, the 
// corrected year is checked to see if it 1980.  If it is, then there is no way to know what 
// year it is in the 21st century.  It is hoped that it is not 2080 because that means someone 
// has booted up an antique, meaning not only the PC but this code.  Assuming the PC's battery 
// is dead, I tack a suggestion onto the date displayed to change the battery.
var bd_datetime_yearReturned = bd_datetime_now.getFullYear();
//if (bd_datetime_yearReturned < 1900) bd_datetime_yearReturned+=1900; // Fix for Opera version 7.11 and earlier, (years are 103 for 2003, etc.)
if (bd_datetime_yearReturned < 100)
   if (bd_datetime_yearReturned < 80)
      bd_datetime_correctYear = bd_datetime_yearReturned + 2000;
   else
      bd_datetime_correctYear = bd_datetime_yearReturned + 1900;
else
   {
   if (bd_datetime_yearReturned < 1900) bd_datetime_yearReturned+=1900; // Fix for Opera version 7.11 and earlier, (years are 103 for 2003, etc.)
   bd_datetime_correctYear = bd_datetime_yearReturned;
   }
<!-- Begin
function domainnamelink()
   {
   document.write('<a href="'+hosturl+'">'+hosturl+'</a>');
   }

function domainname()
   {
   document.write(hosturl);
   }
function contactwtX()
   {
   //window.open(unescape("mailto%3Awebteam%40"+wwwDomainname+""),"_top");
   //document.write('window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;"+devReceiver+"&#64;"+devReceiverDomainname+"?subject="+wwwDomainname+"%20visitor&amp;Body=Hello,%20I%20visited%20the%20"+wwwDomainname+"%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."),"_top");');
   document.write('devReceiver:%20'+devReceiver+'.<br />');
   document.write('devReceiverDomainname:%20'+devReceiverDomainname+'.<br />');
   document.write("wwwDomainname:%20"+wwwDomainname+".<br />");
   document.write('&#109;&#97;&#105;&#108;&#116;&#111;&#58;"+devReceiver+"&#64;"+devReceiverDomainname+"?subject="+wwwDomainname+"%20visitor&amp;Body=Hello,%20I%20visited%20the%20"+wwwDomainname+"%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)');
   document.write(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;"+devReceiver+"&#64;"+devReceiverDomainname+"?subject="+wwwDomainname+"%20visitor&amp;Body=Hello,%20I%20visited%20the%20"+wwwDomainname+"%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."));
   //window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;"+devReceiver+"&#64;"+devReceiverDomainname+"?subject="+wwwDomainname+"%20visitor&amp;Body=Hello,%20I%20visited%20the%20"+wwwDomainname+"%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."),"_top");
   }

function contactX()
   {
   window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;"+wwwReceiver+"&#64;"+wwwReceiverDomainname+"?subject="+wwwDomainname+"%20visitor&amp;Body=Hello,%20I%20visited%20the%20"+wwwDomainname+"%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."),"_top");
   }
function contactwtu()
   {
   //window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website."),"_top");
   //document.write('<a href="'+unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website.")+'">e-mail me a tip</a>');
   //document.write('<a href="'+unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website.")+'">'+param+'</a>');
   document.write(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;"+devReceiver+"&#64;"+devReceiverDomainname+"?subject="+wwwDomainname+"%20visitor&amp;Body=Hello,%20I%20visited%20the%20"+wwwDomainname+"%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."));
   //document.write('<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website.">e-mail us a tip</a>');
   //document.write('ZZZZ');
   }
function contactwtTip()
   {
   //window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website."),"_top");
   document.write('<a href="'+unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website.")+'">e-mail me a tip</a>');
   //document.write('<a href="'+unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website.")+'">'+param+'</a>');
   //document.write('<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website.">e-mail us a tip</a>');
   //document.write('ZZZZ');
   }
function contactwtFails()
{
   window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington%20visitor&amp;Body=Hello,%20I%20visited%20the%20"+wwwDomainname+"%20website."),"_top");
}
function contactwtp(param)
   {
   //window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website."),"_top");
   //document.write('<a href="'+unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website.")+'">e-mail me a tip</a>');
   document.write('<a href="'+unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website.")+'">'+param+'</a>');
   //document.write('<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#51;&#48;&#51;&#64;&#121;&#97;&#104;&#111;&#111;&#46;&#99;&#111;&#109;?subject=Old%20Arlington,%20Inc.%20visitor&amp;Body=Hello,%20I%20visited%20the%20OldArlington.org%20website.">e-mail us a tip</a>');
   //document.write('ZZZZ');
   }
function contactwt2()
   {
   //window.open(unescape("mailto%3Awebteam%40"+wwwDomainname+""),"_top");
   //window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;"+wwwReceiver+"&#64;"+wwwReceiverDomainname+"?subject="+wwwDomainname+"%20visitor&amp;Body=Hello,%20I%20visited%20the%20"+wwwDomainname+"%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."),"_top");
   document.write('AAAAA');
   }
function contactwt()
   {
   // The Body part is not added by Firefox ver 1.0.7 or earlier, and possibly later
   window.open(unescape("mailto%3Awebteam%40oldarlington.org?subject=OldArlington.org%20visitor&amp;Body=Hello,%20I%20visited%20the%20oldarlington.org%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."),"_top");
   }
function contactwt_Works()
   {
   window.open(unescape("mailto%3Awebteam%40oldarlington.org"),"_top");
   }
function contact1()
{
   window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#103;&#99;&#115;&#116;&#97;&#110;&#108;&#105;&#98;&#64;&#104;&#111;&#116;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109?subject=oldarlington.org%20visitor&amp;Body=Hello,%20I%20visited%20the%20oldarlington.org%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."),"_top");
}


function contact_fails()
   {
   window.open(unescape("&#109;&#97;&#105;&#108;&#116;&#111;&#58;"+wwwReceiver+"&#64;"+wwwReceiverDomainname+"?subject="+wwwDomainname+"%20visitor&amp;Body=Hello,%20I%20visited%20the%20"+wwwDomainname+"%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."),"_top");
   }
function contact()
   {
   // The Body part is not added by Firefox ver 1.0.7 or earlier, and possibly later
   window.open(unescape("mailto%3Ainfo%40oldarlington.org?subject=OldArlington.org%20visitor&amp;Body=Hello,%20I%20visited%20the%20oldarlington.org%20website.%20...%20(edit%20the%20rest%20of%20your%20e-mail%20before%20sending)%20..."),"_top");
   }
//-->

//contactwt();
//document.write('<div class="center">');
/*
if (bd_datetime_correctYear == 1980)
   bd_rcb = '(Replace clock battery) ';
document.write(bd_rcb+'Copyright &copy; ');

if (bd_datetime_correctYear > yearestablished)
   document.write(yearestablished+'-');
document.write(bd_datetime_correctYear+' - ');
document.write(line+'-');
document.write(owner);

document.write(' - Send <a href="javascript:contact()" onmouseover="window.status=\' \';return true">&#101;&#45;&#109;&#97;&#105;&#108;</a>');
*/
//document.write("</div>");
// -->