
<!-- DATE-TIME FUNCTION

function showDate() {
  var daynames = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", 
      "Thursday", "Friday", "Saturday");
  var monthNames = new Array ("January", "February", "March", "April", "May", "June", 
      "July", "August", "September", "October", "November", "December");
  var today = new Date();
  var yearstring = new String();
  fourdigityear = today.getYear();
  if (fourdigityear < 1900) { fourdigityear += 1900 }
  yearstring = fourdigityear;
  document.write('<span class="copyright">');
  document.write (daynames[today.getDay()] + ", " + monthNames[today.getMonth()] + " " + today.getDate() + ", " + yearstring);
  document.write('</span>');
}
// -->

<!-- EMAIL ADDRESS FUNCTION

function emailWithLabel(srvr,addy,lbl) {
  document.write("<a href='mailto:" + addy + "@" + srvr + "'>");
  document.write(lbl);
  document.write("</a>");
}

function emailWithoutLabel(srvr,addy) {
  document.write("<a href='mailto:" + addy + "@" + srvr + "'>");
  document.write(addy + "@" + srvr);
  document.write("</a>");
}
//-->

<!-- POPUP FOR SLIDESHOW FUNCTION

function popUpSlideshow(URL) {
var slideshow_width = 620
var slideshow_height = 580
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+slideshow_width+',height='+slideshow_height+'');");
}
// -->
