// Script Copyright © 2005 by Flatiron Graphics & Design, Dudley, NC.
// Permission to use this script for personal use is granted as long as 
// this notice remains intact.

today  = new Date();
todayEpoch  = today.getTime();

targetEpoch = target.getTime();

daysLeft = 1+(Math.floor(((targetEpoch - todayEpoch) / (60*60*24)) / 1000));
 document.write (daysLeft)  //  for troubleshooting only

if ( daysLeft <=0 )   { 
window.location="http://www.masonicsites.org/index1.htm"; }
// Then transfer to the URL of the Home Page...
// Else ignore this script and display the message below.
 

