function redir2Hash (link) {

  // This script gets the hash from the current
  // location and applies it to the calling link.
  // The idea is to provide the viewer a link to
  // where they were going on a former index.html
  // page that has been archived to a new name.

  var hash = window.location.hash;
  window.location = link + hash;
  
}
