var pageName;
var s;
var lastupdate;
var dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")
var now = new Date


//Make reference to the selected link
function makeLinkTo(s) { window.top.location.href = s.options[s.selectedIndex].value; }

function poplesson( pageName ) {
  popup=open( pageName, "popupbig", "width=400,height=300,resizeable=no" );
}


function PrintHeader () {
  document.write('<DIV ID="header">');
  document.write('<BR><BR><BR><BR><BR><BR>');
  document.write('</DIV>');
}


function PrintHomeLink () {
  document.write('<DIV ID="sectionhead">');
  document.write('<A href="http://www.Bradd.us">Bradd.us Main Page</A>');
  document.write('</DIV>');
}


function PrintDate () {
  document.write('<B>');
  document.write(dayName[now.getDay()] + ", " + monName[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear())
  document.write('</B>');
}


function PrintNavigationLinks () {
  document.write('<DIV ID="topnav">');
  document.write('<A href="index.htm">Home</A> -|- ');
  document.write('<A href="about.htm">About the Family</A> -|- ');
  document.write('<A href="contact.htm">Aerial Photography</A> -|- ');
  document.write('<A href="usage.htm">Audio Evangelism</A> -|- ');
  document.write('<A href="subscribe.htm">Adin</A> -|- ');
  document.write('<A href="archives.htm">Abel</A> -|- ');
  document.write('<!--<A href="feedback.htm">Feedback</A> -|- -->');
  document.write('<A href="siteprobs.htm">Problems With This Site?</A>');
  document.write('</DIV>');
}


function PrintFooter ( lastupdate ) {
  document.write('<DIV ID="footer">');
  document.write('Copyright © 2005 by Stephen R. Bradd.');
  document.write('<BR>');
  document.write('</DIV>');
}


function validate_email( frm, fld1, fld2 ) {
  if (fld1 != fld2) {
	alert("The email addresses you entered do not match. Please verify that you have entered the correct email address in both fields.");
  }
}

