function openInNewWindow() {
  window.alert("This link will open in a new browser window. The SteelheadRecovery.org site will remain open in the background. Close the new window to return.");
  }

function writeEmailAddress(addressee,subject,siteAddress) {
  var emailAddress = addressee + "@" + siteAddress;
  if (writeEmailAddress.arguments.length < 2) {
    subject = "Inquiry from " + siteAddress;
    }
  document.write("<a href=\"mailto:" + emailAddress + "?subject=" + subject + "\">" + emailAddress + "</a>");
  }