
/*Creates footer and standard footer navigation */

 /*====================================================*/
/* variables for page location and modify dates */

var ThisPage=location.href+"" 


 /*====================================================*/

/*Begin footer area*/

document.write('<br \/><hr class="brownLine" noshade="noshade" width="50%" \/> ')
document.write('<div class="footer">')

ThisPage=location.href+"" 
document.write ("Back to ") 
document.write ('<a href="'+ThisPage+'#top">Top<\/a>')
document.write('  | <a href="work/index.html" title="Work-related documents">Work</a>')
document.write('  | <a href="mlis/index.html" title="MLIS projects and papers">MLIS</a>')
document.write('  | <a href="lit/index.html" title="Literary &amp; artistic explorations">Lit &amp; Art</a>')
document.write('  | <a href="outdoors/index.html" title="Exploring the outdoors and faraway places">Outdoors &amp; Travel</a>')
document.write('  | <a href="personal/index.html" title="Friends &amp; family area">Personal</a>')
document.write('  | <a href="index.html">Home</a>')
document.write('  | <a href="mailto:geoffrey@redgravenstein.com"> Feedback<\/a>')
document.write('<br \/> <br \/> ')

document.write('Copyright &copy;')
function fixDate(date) {
  var base = new Date(0);
  var skew = base.getTime();
  if (skew > 0)
    date.setTime(date.getTime() - skew);
}

var current = new Date(); // a new instance
fixDate(current);


document.write(current.getFullYear());
document.write(' Geoffrey Skinner. All rights reserved.<br \/><br \/>')
            
document.write('<p class="rgInfo"><a href="http://www.redgravenstein.com/"><img src="http://www.redgravenstein.com/images/rga-small.gif" border="0" alt="Red Gravenstein icon" \/><\/a>')

document.write('<span class="rgInfo">Site Design by <a href="http://www.redgravenstein.com">Red Gravenstein Arts</a><\/span><\/p> ')
document.write('<div class="pageInfo">')
document.write('<br \/><br \/>URL of this page: '+ThisPage+'<br \/>')
document.write('<\/div>')

document.write('<\/div>')
document.write('<br \/><br \/><br \/><br \/><\/div>')


